试题详情
单项选择题 现有:   class ThreadExcept implements Runnable {   public void run() { throw new RuntimeException("exception "); }   public static void main(String [] args) {   new Thread(new ThreadExcept()).start();   try {   int x = Integer.parseInt(args[0]);   Thread.sleep(x);   System.out.print("main ");  } catch (Exception e) { }  }   }   和命令行:  java ThreadExcept 1000   哪一个是结果?() 

A、 main

B、 编译失败

C、 代码运行,但没有输出

D、 main java.lang.RuntimeException: exception

  • D
  • 关注下方微信公众号,在线模考后查看

热门试题