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");
   }
}