Java Exception和Error的区别

Java中异常的抽象类是Throwable,在此基础上,派生出两大类:Error和Exception。

Error是程序中的严重错误,不应该用try…catch包括。Javadoc的说明如下:

An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch. Most such errors are abnormal conditions.

常见的Error有:AssertionError、OutOfMemoryError、StackOverflowError。

Exception分两类:Checked Exception和Unchecked Exception。
Unchecked Exception的基类是RuntimeException,所有继承自RuntimeException的Exception都属于Unchecked Exception, 如:NullPointerException、ArrayIndexOutOfBoundsException。
Checked Exception直接继承自Exception,所有不继承RuntimeException的Exception都属于Checked Exception,如:FileNotFoundException。
这里写图片描述

Checked Exception和Unchecked Exception都可以用try…catch包含。其中,Checked Exception在编译时检查是否有想要的catch处理,因此必要有try…catch包含,或者方法签名处抛出相应的异常。而Unchecked Exception在运行时判断,所以不一定要try…catch包含。而且,Unchecked Exception往往是程序本身存在bug,一般不catch这样的错误。

备注1:
在try中执行return语句,依然会执行finally语句块,除非在try语句中结束JVM进程(system.exit(0))

public class Hello{
    public static void main(String[] args){
        try{
            System.out.println("in try");
            return;
        }catch(Exception e){

        }finally{
            System.out.println("finally");
        }
        System.out.println("end");
    }
}
//输出
in try
finally

备注2:
不要在finally语句块调用return,否则的话,在try语句块中抛出的异常无法被调用者捕获,如下:

    try {
      doSomething();
      System.out.println("No Exception Caught!");
    } catch (RuntimeException e) {
      System.out.println("got it.");
    }
  }

  public static void doSomething() {
    try {
      throw new RuntimeException();
    } finally {
      return;
    }
  }
//输出
No Exception Caught!

备注3:
throw与throws的区别:
throw是在语句块,程序员主动抛出一个异常。
throws是在方法的签名处,说明该方法可能抛出的异常。当有多个异常抛出时,用逗号分隔。

备注4:
从JDK7开始,同一个try对应的多个catch可以写在一起。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值