Java 异常处理
Throwable类
java.lang.Throwable 包下,有Error, Exception 2个直接子类 ,我们主要关注 Exception 子类下的RuntimeException子类,也叫运行时异常,其他的是大致部分是编译异常
处理异常两种处理方式:
- 自己将该问题处理,然后继续运行
- 自己没有针对的处理方式,只有交给调用main的jvm来处理
异常处理的两种方式:
- try…catch…finally
- try catch
- try catch finally
- try finally
- throws
try.....catch :
public static void main(String[] args){
int a = 10;
int b = 0;
int[] arr = {11,22,33,44,55};
try {
System.out.println(a / b); // java.lang.ArithmeticException
System.out.println(arr[10]); // IndexOutOfBoundsException
arr = null;
System.out.println(arr[0]); // java.lang.NullPointerException
} catch (ArithmeticException s){
System.out.println(s);
} catch (NullPointerException v){
System.out.println(v);
}catch (Exception e) {
// 相当于Exception e = new ArithmeticException("/ by zero");
// Exception是大部分错误的父类,父类引用指向之类对象,一般这么写就可以,不用写其他的catch语句
// TODO: handle exception
System.out.println(e); // java.lang.ArithmeticException: / by zero
}
// 多种catch写法 JDK7的写法
try {
System.out.println(arr[10]);
} catch (ArithmeticException | NullPointerException | ArrayIndexOutOfBoundsException e) {
// TODO: handle exception
System.out.println(e);
}
}
throws :
class Person implements Comparable<Person>{
private int age;
public int getAge() {
return age;
}
public void setAge(int age)throws Exception {
if(age >0 && age <150){
this.age =age;
}else{
// 当我们调用这个setAge这个方法,可能会抛出一个异常,所以在调用这个方法时候需要处理异常或者使用throws继续向上抛出。如果我们想抛出一个运行类异常,则就不用往上抛,只要把下面的异常类改为new RuntimeException("年龄非法")
throw new Exception("年龄非法");
}
}
}
throws和throw的区别
-
throws
-
用在方法声明后面,跟的是异常类名
-
可以跟多个异常类名,用逗号隔开
-
表示抛出异常,由该方法的调用者来处理
-
-
throw
-
用在方法体内,跟的是异常对象名
-
只能抛出一个异常对象名
-
表示抛出异常,由方法体内的语句处理
-
finally关键字的特点及作用:
被finally控制的语句体一定会执行,特殊情况不执行:在执行到finally之前jvm退出了(比如System.exit(0))
finally的作用:用于释放资源,在IO流操作和数据库操作中会见到
面试题:
如果catch里面有return语句,请问finally的代码还会执行吗?如果会,请问是在return前还是return后。
答案: 会,在return 后执行,但是不会改变return的结果,因为return执行后就保存了执行路径。即便finally还会继续执行,但是都不会修改返回的结果
自定义异常
class AgeOutofBoundsException extends Exception{
// 自定义异常类,继承异常,也可以继承运行时异常类,然后重写构造即可
public AgeOutofBoundsException() {
super();
// TODO Auto-generated constructor stub
}
public AgeOutofBoundsException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public AgeOutofBoundsException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public AgeOutofBoundsException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public AgeOutofBoundsException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}
class Person implements Comparable<Person>{
private int age;
public int getAge() {
return age;
}
public void setAge(int age)throws Exception {
if(age >0 && age <150){
this.age =age;
}else{
// 使用自定义异常
throw new AgeOutofBoundsException("年龄异常");
}
}
}
异常注意事项
- a:子类重写父类方法时,子类的方法必须抛出相同的异常或父类异常的子类。(父亲坏了,儿子不能比父亲更坏)
- b:如果父类抛出了多个异常,子类重写父类时,只能抛出相同的异常或者是他的子集,子类不能抛出父类没有的异常
- c:如果被重写的方法没有异常抛出,那么子类的方法绝对不可以抛出异常,如果子类方法内有异常发生,那么子类只能try,不能throws
网友评论