异常
异常
捕获和抛出异常
-
try,catch,finally快捷键Ctrl+Alt+T
-
try块中监控执行内容
-
catch块中为检测到后的操作,参数为异常类型,增加一些处理异常的代码块
-
finally块为善后操作,无论如何都会执行。可以在finally中释放占用的资源
-
throw new 异常 主动抛出异常
-
throws针对方法
-
e.g.
//假设在方法中解决不了这个异常,在方法上抛出异常 public void test (int a,int b) throws ArithmeticException{ if(b == 0){ throw new ArithmeticException();//主动抛出异常,一般在方法中使用 } }
这样在方法上抛出异常在调用时需要try,catch,程序才能往下正常运行
-
-
Alt+Enter显示异常处理方案