Java异常处理运行时异常(RuntimeException)详解及实例
发布于 2020-4-16|
复制链接
摘记: Java异常处理运行时异常(RuntimeException)详解及实例RuntimeException
RunntimeException的子类:ClassCastExc ..
Java异常处理运行时异常(RuntimeException)详解及实例RuntimeException RunntimeException的子类:ClassCastException多态中,可以使用Instanceof 判断,进行规避
ArithmeticException进行if判断,如果除数为0,进行return
NullPointerException进行if判断,是否为null
ArrayIndexOutOfBoundsException使用数组length属性,避免越界
这些异常时可以通过程序员的良好编程习惯进行避免的1:遇到运行时异常无需进行处理,直接找到出现问题的代码,进行规避。
2:就像人上火一样牙疼一样,找到原因,自行解决即可
3:该种异常编译器不会检查程序员是否处理该异常
4:如果是运行时异常,那么没有必要在函数上进行声明。
案例1:除法运算功能(div(int x,int y))
2:if判断如果除数为0,throw new ArithmeticException();
3:函数声明throws ArithmeticException
4:main方法调用div,不进行处理
5:编译通过,运行正常
6:如果除数为0,报异常,程序停止。
7:如果是运行时异常,那么没有必要在函数上进行声明。1:Object类中的wait()方法,内部throw了2个异常 IllegalMonitorStateException InterruptedException
1:只声明了一个(throws) IllegalMonitorStateException是运行是异常没有声明。
```java
class Demo{
public static void main(String[] args){
div(2, 1);
}
public static void div(int x, int y) {
if (y == 0) {
throw new ArithmeticException();
}
System.out.println(x / y);
}
}
```