实例代码如下:
package unit7;
public class Demo11_Run {
public static void main(String[] args) {
Demo11_MyThread t = new Demo11_MyThread();
t.start();
}
}
class Demo11_MyThread extends Thread {
public void run() {
String username = null;
System.out.println(username.hashCode());
}
}
运行结果:
程序运行后台在控制台输出空指针异常。在Java的多线程技术中,可以对多线程中的异常进行“捕捉”,使用的是UncaughtExceptionHandler类,从而可以对发生的异常进行有效的处理。
实例代码如下:
package unit7;
import java.lang.Thread.UncaughtExceptionHandler;
public class Demo12_Run {
public static void main(String[] args) {
Demo11_MyThread t1 = new Demo11_MyThread();
t1.setName("线程t1");
t1.setUncaughtExceptionHandler(new UncaughtExceptionHandler() {
public void uncaughtException(Thread t, Throwable e) {
System.out.println("线程:" + t.getName() + " 出现了异常:");
e.printStackTrace();
}
});
t1.start();
Demo11_MyThread t2 = new Demo11_MyThread();
t2.setName("线程t2");
t2.start();
}
}
运行结果如下:
方法setUncaughtExceptionHandler()是给指定线程对象设置的异常处理器。在Thread类中还可以使用setDefaultUncaughtExceptionHandler()方法对线程对象设置异常处理器,示例代码如下:
package unit7;
import java.lang.Thread.UncaughtExceptionHandler;
public class Demo13_Run {
public static void main(String[] args) {
Demo11_MyThread.setDefaultUncaughtExceptionHandler(new UncaughtExceptionHandler() {
public void uncaughtException(Thread t, Throwable e) {
System.out.println(" 线程:" + t.getName() + " 出现了异常:" );
e.printStackTrace();
}
});
Demo11_MyThread t1 = new Demo11_MyThread();
t1.setName("线程t1");
t1.start();
Demo11_MyThread t2 = new Demo11_MyThread();
t2.setName("线程t2");
t2.start();
}
}
运行结果如下:
方法setDefaultUncaughtExceptionHandler()的作用是为指定线程类的所有线程对象设置默认的异常处理器。
扩展点:
https://mp.weixin.qq.com/s/oWFaxwPeXvYQa5aVR_WDRA