异常机制处理
1.抛出异常
2.捕获异常
Ctrl+Alt+T
public class Test2 {标签:处理,抛出,ArithmeticException,int,new,机制,异常,public From: https://www.cnblogs.com/yuan947022015/p/17652199.html
public static void main(String[] args) {
try {
new Test2().test(1,0);
} catch (ArithmeticException e) {
throw new RuntimeException(e);
} finally {
System.out.println("最后");
}
}
// 假设这方法中,处理不了这个异常。方法上抛出异常。
public void test(int a,int b) throws ArithmeticException{
if(b==0){
throw new ArithmeticException(); //主动抛出异常,一般在方法中使用
}
}
}