试题详情
多项选择题 public class Threads2 implements Runnable {  public void nun() {  System.out.println(”run.”);  throw new RuntimeException(”Problem”);  }  public static void main(String[] args) {  Thread t = new Thread(new Threads2());  t.start();  System.out.println(”End of method.”);  }  }  Which two can be results?()

A、 java.lang.RuntimeException: Problem

B、 run.    java.lang.RuntimeException: Problem

C、 End of method.    java.lang.RuntimeException: Problem

D、 End of method.      run.      java.lang.RuntimeException: Problem

E、 run.    java.lang.RuntimeException: Problem     End of method.

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

热门试题