java.lang.Thread.getUncaughtExceptionHandler()方法實例
java.lang.Thread.getUncaughtExceptionHandler() 方法返回調用的處理時,該線程突然終止,由於未捕獲到異常。
聲明
以下是java.lang.Thread.getUncaughtExceptionHandler()方法的聲明
public Thread.UncaughtExceptionHandler getUncaughtExceptionHandler()
參數
-
NA
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的例子顯示java.lang.Thread.getUncaughtExceptionHandler()方法的使用。
package com.yiibai; import java.lang.*; public class ThreadDemo implements Runnable { Thread t; public ThreadDemo() { t = new Thread(this); // this will call run() function t.start(); } public void run() { // prints thread name System.out.println("Thread = " + t.getName()); /* returns the handler invoked when this thread abruptly terminates due to an uncaught exception. */ Thread.UncaughtExceptionHandler handler = t.getUncaughtExceptionHandler(); System.out.println(handler); } public static void main(String[] args) { new ThreadDemo(); new ThreadDemo(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Thread = Thread-0 java.lang.ThreadGroup[name=main,maxpri=10] Thread = Thread-1 java.lang.ThreadGroup[name=main,maxpri=10]