サブスレッド例外は try catch ではキャッチできません。Thread オブジェクトには、スレッド内で生成された例外を取得するための setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler eh) メソッドが用意されています。
package threads; import java.lang.Thread.UncaughtExceptionHandler; public class TextException { public static void main(String[] args) { Test test = new Test(); test.setUncaughtExceptionHandler(new UncaughtExceptionHandler() { public void uncaughtException(Thread t, Throwable e) { System.out.println(t.getName() + " : " + e.getMessage()); // TODO } }); } public static class Test extends Thread { public Test() { } public void run() { throw new RuntimeException("just a test"); } } }
サブスレッド例外をキャッチする Java マルチスレッド プログラミングの例に関連するその他の記事については、PHP 中国語 Web サイトに注目してください。