抛出异常
捕获异常
---一般try和catch必须有,finally可以没有;
---try用来监控区域,如果发生该类型异常,则执行catch里的代码(catch里的参数是异常类型)
---可以捕获多个异常,写多个catch块,最大的异常写在最下面(从小到大)
int a = 1; int b = 0; //自动生成捕获的代码:ctrl+alt+t,选中要包裹的那行代码,按下快捷键即可 try { //监控区域 System.out.println(a / b); }catch(ArithmeticException e){ System.out.println("程序出现异常,变量b不能为0"); }finally { System.out.println("finally"); } //finally用来善后,无论有无异常,都会执行(一般在io流中,关闭一些资源的操作都在这里)
//主动抛出异常--一般用在方法中 public void test(int a,int b ){ if (b==0){ throw new ArithmeticException();} System.out.println(a/b); } //在主函数调用这个方法 new test2().test(1,0);
//假设在这个方法中,处理不了这个异常,方法上抛出异常---throws public void test(int a,int b )throws ArithmeticException { if (b==0){ throw new ArithmeticException(); } System.out.println(a/b);} //在主函数调用这个方法时,需要用try catch捕获这个异常(用快捷键把调用的代码包裹起来)
异常处理五个关键字:
try catch finally throw throws
在程序中自定义异常类,大体分为以下步骤:???