当前位置:SCJP程序员认证考试题库

问题:

[多选]

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.

简述英国高等教育的双重制。 图书分类标引工作 祖先崇拜 简述英国教育管理体制的特点及其改革方向。 图书分类的主要作用是什么?

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?()

参考答案:

  参考解析

本题暂无解析

在线 客服