在下面的代码中,预测的输出可能是什么?
public class Threads2 implements Runnable {
public void run()
{
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.");
}
}
作为答案给出的可能结果是:
End of method.
run.
java.lang.RuntimeException: Problem
或者
run.
java.lang.RuntimeException: Problem
End of method.
据我所知,只有第二个答案是可能的,请帮助我理解。