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

问题:

[单选]

1. public class a { 
2. public void method1() { 
3. try { 
4. B b=new b(); 
5. b.method2(); 
6. // more code here 
7. } catch (TestException te) { 
8. throw new RuntimeException(te); 
9. } 
10. } 
11. } 
1. public class b { 
2. public void method2() throws TestException { 
3. // more code here 
4. } 
5. } 
1. public class TestException extends Exception { 
2. }
 Given: 
31. public void method() { 
32. A a=new a(); 
33. a.method1(); 
34. } 
Which is true if a TestException is thrown on line 3 of class b?()

A .  Line 33 must be called within a try block.
B .  The exception thrown by method1 in class a is not required to be caught.
C .  The method declared on line 31 must be declared to throw a RuntimeException.
D .  On line 5 of class a, the call to method2 of class b does not need to be placed in a try/catch block.

简述音量表现性的特点。 专门图书馆学是专门研究()的图书馆学分支学科。 图书馆学基本问题。 图书馆工作原理。 图书馆的各种类型、特点。 图书馆事业建设的基本理论。 唐朝门下省的主要秘书官职有哪些? 在我国,于()图书馆学被列入大学课程。 19世纪20年代。 18世纪20年代。 20世纪20年代。 WWW的组成主要包括() URL。 Gopher。 HTML。 HTTP。 Telnet。

1. public class a { 
2. public void method1() { 
3. try { 
4. B b=new b(); 
5. b.method2(); 
6. // more code here 
7. } catch (TestException te) { 
8. throw new RuntimeException(te); 
9. } 
10. } 
11. } 
1. public class b { 
2. public void method2() throws TestException { 
3. // more code here 
4. } 
5. } 
1. public class TestException extends Exception { 
2. }
 Given: 
31. public void method() { 
32. A a=new a(); 
33. a.method1(); 
34. } 
Which is true if a TestException is thrown on line 3 of class b?()

参考答案:

  参考解析

本题暂无解析

在线 客服

相关内容

相关标签