问题详情

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.

时间:2022-01-04 17:18 关键词: SCJP程序员认证考试

答案解析

D| E
相关问题