jdk/src/share/classes/java/lang/Thread.java
/**
* Returns the default handler invoked when a thread abruptly terminates
* due to an uncaught exception. If the returned value is <tt>null</tt>,
* there is no default.
* @since 1.5
* @see #setDefaultUncaughtExceptionHandler
*/
public static UncaughtExceptionHandler getDefaultUncaughtExceptionHandler(){
{- -------------------------------------------
(1) defaultUncaughtExceptionHandler フィールドの値をリターンするだけ.
---------------------------------------- -}
return defaultUncaughtExceptionHandler;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.