Java异常处理运行时异常(RuntimeException)详解及实例
程序员文章站
2024-02-17 10:44:46
java异常处理运行时异常(runtimeexception)详解及实例
runtimeexception
runntimeexception的子类...
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是运行是异常没有声明。
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); } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!