這篇文章主要介紹了UncaughtExceptionHandler的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計、網(wǎng)站建設(shè)與策劃設(shè)計,白朗網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:白朗等地區(qū)。白朗做網(wǎng)站價格咨詢:13518219792
Thread的run方法是不拋出任何檢查型異常(checked exception)的,但是它自身卻可能因為一個異常而被終止,導致這個線程的終結(jié)。最麻煩的是,在線程中拋出的異常即使使用try...catch也無法截獲,因此可能導致一些問題出現(xiàn),比如異常的時候無法回收一些系統(tǒng)資源,或者沒有關(guān)閉當前的連接等等。
JDK5.0之前,不能為單獨的Thread設(shè)置UncaughtExceptionHandler,也不能指定一個默認的UncaughtExceptionHandler。為了可以設(shè)置一個UncaughtExceptionHandler,需要去繼承ThreadGroup并覆寫uncaughtException方法。
在JDK5.0中,我們通過Thread的實例方法setUncaughtExceptionHandler,可以為任何一個Thread設(shè)置一個UncaughtExceptionHandler。當然你也可以為所有Thread設(shè)置一個默認的UncaughtExceptionHandler,通過調(diào)用Thread.setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler eh)方法,這是Thread的一個static方法。
定義一個Handler類必須實現(xiàn)Thread.UncaughtExceptionHandler接口的void uncaughtException(Thread t, Throwable e)方法。如果不設(shè)置一個Handler,那么單個Thread的Handler是null。但是,如果這個單個線程是ThreadGroup中的一個Thread,那么這個線程將使用ThreadGroup的UncaughtExceptionHandler。ThreadGroup自身已經(jīng)實現(xiàn)了Thread.UncaughtExceptionHandler接口。
uncaughtException(Thread a, Throwable e)可以拿到Thread,所以在uncaughtException釋放相關(guān)資源是最好的辦法。
總之,JDK5.0中Thread及其相關(guān)的輔助功能得到了加強,為我們提供了很多便利和安全的解決方案.
以下是UncaughtExceptionHandler的示例,大家可以運行一下看看
public class UncaughtExceptionHandlerSample {
public static void main(String[] args) {
//注釋和沒有注釋的區(qū)別
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的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!