异常-多个catch块

对于有多个catch块时,通常按照“从小到大”的顺序捕获异常,这样才能按照保证逐层捕获,从而避免对父类的大的异常进行了捕获,导致对子类的小的异常无法进行捕获的情况。

    public static void main(String[] args) {
        fun2();
    }

    //捕获异常的顺序不正确时,这样写编译就通不过的
    public static void fun1(){
        try {
            int arr[] = {1,2,6};
            System.out.println(arr[3]);
        } catch (RuntimeException e) {  //运行时异常
            System.out.println("RuntimeException...");
        } catch (ArrayIndexOutOfBoundsException e) {  //数组下标访问越界
            System.out.println("ArrayIndexOutOfBoundsException...");
        } catch (Exception e) {         //异常
            System.out.println("Exception...");
        }finally{
            System.out.println("finally...");
        }
    }

    //按照“从小到大”的原则进行一一捕获
    public static void fun2(){
        try {
            int arr[] = {1,2,6};
            System.out.println(arr[3]);
        } catch (ArrayIndexOutOfBoundsException e) {  //数组下标访问越界
            System.out.println("ArrayIndexOutOfBoundsException...");
        } catch (RuntimeException e) {  //运行时异常
            System.out.println("RuntimeException...");
        } catch (Exception e) {         //异常
            System.out.println("Exception...");
        }finally{
            System.out.println("finally...");
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值