Runtime 异常和Checked异常
Java中的异常被分为两类,Checked异常和Runtime异常,即编译时异常和运行时异常。
所有RuntimeException类及其子类的实例被称为Runtime异常.
对于Checked异常的处理方式有两种:
- 当前方法明确知道如何处理该异常,程序应该使用try....catch 块来捕获该异常,然后在对应的catch块中修补该异常.
- 当前方法不知道如何处理该异常,应该在定义该方法时声明抛出该异常.
Runtime异常比较灵活,它无须显示的声明抛出.如果程序需要捕获Runtime异常,也可以使用try....catch 块来捕获Runtime异常.
下面的代码是一个很好的例子:
public class TestThrow { public static void main(String[] args) { try { //调用throws声明的方法,必须显示捕获该异常 //否则必须在main方法中再次的声明抛出 throwChecked(3); } catch (Exception e) { System.out.println(e.getMessage()); } //调用捕获Runtime异常的方法,可以显示的捕获该异常,也可以不理会该异常 throwRuntime(4); } public static void throwChecked(int a) throws Exception{ if(a>0){ //自行抛出Exception异常 //该代码必须处于try块里,或者处于带throws声明的方法中 throw new Exception("a的值大于0,不符合要求"); } } public static void throwRuntime(int a){ if(a>0){ //自行抛出RuntimeException异常,既可以显示捕获该异常 //也可以完全不理会该异常,把该异常交给方法调用者处理 throw new RuntimeException("a的值大于零,不符合要求"); } } }
可以看到程序代码中:Runtime异常没有使用throws声明抛出,也没有使用try...catch块来捕获处理。Checked异常就必须声明抛出或者捕获。运行程序代码时,会出现异常.