成人高等教育 / JAVA程序设计
下列程序执行的结果是( ) 。 public class X7_1_6 {
public static void main(String[] args) {
try{
return;
}
finally{
System.out.println("Finally");
}
}
}
public static void main(String[] args) {
try{
return;
}
finally{
System.out.println("Finally");
}
}
}
- A、 程序正常运行,但不输出任何结果
- B、 程序正常运行,并输出 Finally
- C、 编译通过,但运行时出现异常
- D、 因为没有 catch 子句,因此不能通过编译
参考答案:
佳题速递: