Java异常处理学习

抛出一个异常

        throw new ArrayIndexOutOfBoundsException();
        //手动抛出 2.JVM运行时帮你抛出


public class Launcher {
    public static void main(String[] args){
        m1();
    }
    public static void m1(){
        m2();
    }
    public static void m2(){
        int[] arr = new int[2];
        arr[2] =1;
    }
}
/*Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2
at Launcher.m2(Launcher.java:13)
at Launcher.m1(Launcher.java:9)
at Launcher.main(Launcher.java:6)
*/
public class Launcher {
    public static void main(String[] args){
        try{
            m1();
        }catch(ArrayIndexOutOfBoundsException e){
            e.printStackTrace();
        }catch(Exception e){
            e.printStackTrace();
        }finally{
            System.out.println("finally");
        }
    }
    public static void m1(){
        m2();
    }
    public static void m2(){
        int[] arr = new int[2];
        arr[2] =1;
    }
}
//catch可以有多个,顺序从小到大

自定义异常:

public class MyException extends Exception //继承自Exception
{
    public MyException(){
        super();
    }
    public MyException(String msg){
        super(msg);
    }
}

    public static void main(String[] args)throws MyException{
        throw new MyException("出现异常了");
    //  throw new NullPointerException();
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值