Java 使用线程异常实例 Java 打印栈跟踪2 Java 用户自定义异常 Java 使用线程异常实例 class MyThread extends Thread { public void run() { System.out.println("Throwing in " +"MyThread"); throw new RuntimeException(); } } public class Main { public static void main(String[] args) { MyThread t = new MyThread(); t.start(); try { Thread.sleep(1000); } catch (Exception x) { System.out.println("Caught it" + x); } System.out.println("Exiting main"); } } Java 打印栈跟踪2 Java 用户自定义异常