您好,登錄后才能下訂單哦!
這篇文章主要介紹了UncaughtExceptionHandler的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
Thread的run方法是不拋出任何檢查型異常(checked exception)的,但是它自身卻可能因為一個異常而被終止,導致這個線程的終結。最麻煩的是,在線程中拋出的異常即使使用try...catch也無法截獲,因此可能導致一些問題出現,比如異常的時候無法回收一些系統資源,或者沒有關閉當前的連接等等。
JDK5.0之前,不能為單獨的Thread設置UncaughtExceptionHandler,也不能指定一個默認的UncaughtExceptionHandler。為了可以設置一個UncaughtExceptionHandler,需要去繼承ThreadGroup并覆寫uncaughtException方法。
在JDK5.0中,我們通過Thread的實例方法setUncaughtExceptionHandler,可以為任何一個Thread設置一個UncaughtExceptionHandler。當然你也可以為所有Thread設置一個默認的UncaughtExceptionHandler,通過調用Thread.setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler eh)方法,這是Thread的一個static方法。
定義一個Handler類必須實現Thread.UncaughtExceptionHandler接口的void uncaughtException(Thread t, Throwable e)方法。如果不設置一個Handler,那么單個Thread的Handler是null。但是,如果這個單個線程是ThreadGroup中的一個Thread,那么這個線程將使用ThreadGroup的UncaughtExceptionHandler。ThreadGroup自身已經實現了Thread.UncaughtExceptionHandler接口。
uncaughtException(Thread a, Throwable e)可以拿到Thread,所以在uncaughtException釋放相關資源是最好的辦法。
總之,JDK5.0中Thread及其相關的輔助功能得到了加強,為我們提供了很多便利和安全的解決方案.
以下是UncaughtExceptionHandler的示例,大家可以運行一下看看
public class UncaughtExceptionHandlerSample {
public static void main(String[] args) {
//注釋和沒有注釋的區別
Thread.setDefaultUncaughtExceptionHandler(new DefaultUncaughtExceptionHandler());
UncaughtThread a = new UncaughtThread();
a.start();
}
}
/**
* 自定義的一個UncaughtExceptionHandler
*/
class DefaultUncaughtExceptionHandler implements Thread.UncaughtExceptionHandler {
/**
* 這里可以做任何針對異常的處理,比如記錄日志等等
*/
public void uncaughtException(Thread thread, Throwable e) {
if (e != null && e instanceof Error) {
if (e instanceof OutOfMemoryError) {
try {
System.err.println("Halting due to Out Of Memory Error..." + Thread.currentThread().getName());
} catch (Throwable err) {
// Again we don't want to exit because of logging issues.
}
Runtime.getRuntime().halt(-1);
} else {
// Running in daemon mode, we would pass Error to calling thread.
}
} else {
System.out.println("An exception has been capturedn");
System.out.println("Thread: " + thread.getId());
System.out.println("Exception: " + e.getClass().getName() + ":" + e.getMessage());
System.out.println("Thread status: " + thread.getState());
System.out.printf("Stack Trace: n");
e.printStackTrace(System.out);
new Thread(new UncaughtThread()).start();
}
}
}
/**
* Test線程
*/
class UncaughtThread extends Thread {
public void run() {
System.out.println(Integer.parseInt("1"));
System.out.println(Integer.parseInt("2"));
System.out.println(Integer.parseInt("3"));
System.out.println(Integer.parseInt("abc"));
}
}
感謝你能夠認真閱讀完這篇文章,希望小編分享的“UncaughtExceptionHandler的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。