Java 中 Throwable 分为 Exception 和 Error:
1、 出现Error的情况下,程序会停止运行。
2、 Exception 分为 RuntimeException 和非运行时异常。
3、 非运行时异常必须处理,比如thread中sleep()时,必须处理InterruptedException异 常,才能通过编译。
4、 而RuntimeException可以处理也可以不处理,因为编译并不能检测该类异常,比如
NullPointerException、 ArithmeticException和 ArrayIndexOutOfBoundException 等。 由此题目所诉情形下发生的应该是RuntimeException,属于未检测异常,编译器不会检查该 异常,可以处理,也可不处理。
所以这里存在两种情形:
1、 如果该异常被捕获或抛出,则程序继续运行。
2、 如果异常没有被捕获该线程将会停止执行。
Thread.UncaughtExceptionHandler是用于处理未捕获异常造成线程突然中断情况的一个内 嵌接口。当一个未捕获异常将造成线程中断的时候JVM会使用
Thread.getUncaughtExceptionHandler()来查询线程的 UncaughtExceptionHand1er,并将线 程和异常作为参数传递给handler的uncaughtException。方法进行处理。
实例:
1、未处理的RuntimeException,发生异常后程序停止运行
public class Mainl {
public static void main(String[] args){
int x = 1;
x = x / 0;
System.out.println("x = "+x);
}
}
输出:
Exception in thread "main" java.lang.ArithmeticException: / by zero
at microsoft2018.Mainl.main(Mainl.java: 14)
2、程序处理RuntimeException,发生异常后继续运行
public class Mainl {
public static void main(String[] args){
try{
int x = 1;
x = x / 0;
}catch(Exception e){
System.out.println("除 0 错误");
e.printStackTrace();
输出:
除0错误
java.lang.ArithmeticException: / by zero
at microsoft2018.Mainl.main(Mainl.java: 14)

Was this helpful?

0 / 0

发表回复 0

Your email address will not be published.