Les exceptions de sous-thread ne peuvent pas être interceptées via try catch. L'objet Thread fournit la méthode setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler eh) pour obtenir les exceptions générées dans le thread.
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"); } } }
Pour plus d'exemples de programmation multithread Java de capture d'exceptions de sous-thread et d'articles connexes, veuillez prêter attention au site Web PHP chinois !