JavaSE基础——异常

1. 什么是异常

1.1 异常的定义

  • 异常:就是程序出现了不正常情况
    JavaSE基础——异常_第1张图片

1.2 JVM的默认处理方案

  • 如果程序出现了问题,我们没有作任何处理,最终JVM会做默认处理

       把异常的名称,异常的原因即异常出现的位置等信息输出在控制台
       程序停止执行
    

1.3 异常处理

1.3.1 首先我们为什么要学习自己处理异常?

  • 原因:
    因为Java虚拟机的自动处理方案会让程序在出现问题的地方直接结束掉了,而在实际开发中我们程序在某一个地方出问题了他不应该影响我们程序后续的执行,所以我们要自己来处理异常

1.3.2 自己处理异常

如果程序出现了问题我们要自己来处理异常一共有两种方案:

  • try…catch…
  • throws

1.3.3 异常处理之try…catch…

  • 定义格式
try {
	可能出现异常的代码;
} catch(异常类名 变量名) {
	异常的处理代码;
}
  • 执行流程

     	1. 程序从 try 里面的代码开始执行
     	2. 出现异常,就会跳转到对应的 catch 里面去执行
     	3. 执行完毕之后,程序还可以继续往下执行
    
  • 示例代码

public class ExceptionDemo01 {
	public static void main(String[] args) {
		System.out.println("开始");
		method();
		System.out.println("结束");
	}
	public static void method() {
		try {
		int[] arr = {1, 2, 3};
		System.out.println(arr[3]);
		System.out.println("这里能够访问到吗");
		} catch (ArrayIndexOutOfBoundsException e) {
		// System.out.println("你访问的数组索引不存在,请回去修改为正确的索引");
		e.printStackTrace();
		}
	}
}

1.3.4 异常处理之throws

  • 定义格式
public void 方法() throws 异常类名 {
}
  • 示列代码
public class ExceptionDemo {
	public static void main(String[] args) {
		System.out.println("开始");
		// method();
		try {
			method2();
		}catch (ParseException e) {
			e.printStackTrace();
		}
		System.out.println("结束");
		}
		//编译时异常
		public static void method2() throws ParseException {
			String s = "2048-08-09";
			SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
			Date d = sdf.parse(s);
			System.out.println(d);
		}
		//运行时异常
		public static void method() throws ArrayIndexOutOfBoundsException {
			int[] arr = {1, 2, 3};
			System.out.println(arr[3]);
		}
}
  • 注意:

     这个throws格式是跟在方法的括号后面的
     编译时异常必须要进行处理,两种处理方案:try...catch …或者 throws,如果采用 throws 这种方案,
     将来谁调用谁处理
     运行时异常可以不处理,出现问题后,需要我们回来修改代码
    

1.3.5 Throwable成员方法

  • 常用方法
    JavaSE基础——异常_第2张图片

  • 示例代码

public class ExceptionDemo02 {
	public static void main(String[] args) {
		System.out.println("开始");
		method();
		System.out.println("结束");
	}
	public static void method() {
		try {
			int[] arr = {1, 2, 3};
			System.out.println(arr[3]); //new ArrayIndexOutOfBoundsException();
			System.out.println("这里能够访问到吗");
			} catch (ArrayIndexOutOfBoundsException e) { //new
			ArrayIndexOutOfBoundsException();
		// e.printStackTrace();
		//public String getMessage():返回此 throwable 的详细消息字符串
		// System.out.println(e.getMessage());
		//Index 3 out of bounds for length 3
		//public String toString():返回此可抛出的简短描述
		// System.out.println(e.toString());
		//java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds
			for length 3
		//public void printStackTrace():把异常的错误信息输出在控制台
			e.printStackTrace();
		// java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds
			for length 3
		// at com.itheima_02.ExceptionDemo02.method(ExceptionDemo02.java:18)
		// at com.itheima_02.ExceptionDemo02.main(ExceptionDemo02.java:11)
		}
	}
}

1.3.6 编译时异常和运行时异常的区别

  • 编译时异常

     1. 都是Exception类及其子类
     2. 必须显示处理,否则程序就会发生错误,无法通过编译
    
  • 运行时异常

     1. 都是RuntimeException类及其子类
     2. 无需显示处理,也可以和编译时异常一样处理
    

1.3.7 throws和throw的区别

JavaSE基础——异常_第3张图片

1.3.8 自定义异常类

代码示例

  • 自定义异常类
public class ScoreException extends Exception {
	public ScoreException() {}
	public ScoreException(String message) {
		super(message);
	}
}
  • 老师类
public class Teacher {
	public void checkScore(int score) throws ScoreException {
		if(score<0 || score>100) {
			// throw new ScoreException();
			throw new ScoreException("你给的分数有误,分数应该在0-100之间");
		} else {
			System.out.println("成绩正常");
		}
	}
}
  • 测试类
public class Demo {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println("请输入分数:");
		int score = sc.nextInt();
		Teacher t = new Teacher();
		try {
			t.checkScore(score);
		} catch (ScoreException e) {
			e.printStackTrace();
		}
	}
}

你可能感兴趣的:(JavaSE基础,java,jvm)