其他分享
首页 > 其他分享> > 异常

异常

作者:互联网

异常

 

 

 

 异常处理框架

java把异常当作对象处理,并定义了一基类java.Throwable作为所有异常的超类

在java中APL中定义了一朵异常,这些异常分为两大类,错误Error和异常Exception

 

 

 

 

 

 异常的抛出跟捕获

异常处理的五个关键字

;try,catch.finally,throw,throws

package KuangShen_02;
/*
异常 (Exception)
try catch 必须部分
选中代码 快捷键(ctrl + alt + t)
throw(主动抛出异常)(方法里常用)
*/

public class Outer {
public static void main(String[] args) {
int a =1;
int b =0;
try{//try监控区域

if(b==0){//throw throws
throw new ArithmeticException();//主动抛出异常
}
System.out.println(a/b);


}catch (ArithmeticException e){//catch捕获异常 异常名+对象名
System.out.println("程序出现异常,变量b不萌为0");
}finally{//处理善后工作
System.out.println("finally");
}
}

}

 


 alt + enter  处理异常

 

 

标签:System,try,catch,异常,throw,out
来源: https://www.cnblogs.com/xyzaa/p/16262985.html