1、RuntimeException及其所有的子类均为运行时异常,除RuntimeException及其子类之外的所有异常为非运行时异常(受检异常);
2、运行时异常是可以由程序员良好的编辑习惯所避免掉的,因此在JVM中,运行时异常可处理也可以不处理;
案例:
1:除法运算功能(div(int x,int y))
2:if判断如果除数为0,throw new ArithmeticException();
class Demo2{
public static void main(String args[]){
div(4,0);
}
public static void div(int x,int y){
if(y==0){
thros new ArithmeticException();
}
System.out.println(x/y);
}
}
3、非运行时异常必须使用throw或try{}catch(){}来处理,否则编译器会报错;
原文链接:https://www.f2er.com/note/421471.html