JAVA语言基础笔试题-2
Question 1
Given:
11.classA {
12. public void process() { System.out.print(“A “)} }
13. class B extends A {
14. public void process() throws RuntimeException { 
15. super.process();
16. if (true) throw new RuntimeException();
17. System.out.print(“B”)
}}
18. public static void main(String[] args) { 
19. try { ((A)new B()).process(); } 
20. catch (Exception e) { System.out.print(“Exception “)}
21. }
What is the result?
A. Exception
B. A Exception 
C. A Exception B
D. A B Exception
E. Compilation fails because of an error in line 14. 
F. Compilation fails because of an error in line 19.
答案:B
考点:方法的重写(重写方法异常抛出部分的理解)
      多态
      异常处理
说明:
      子类重写父类方法,不能抛出比父类方法更多的异常,但此处子类重写方法声明抛出了RuntimeException,不算多抛,算是平抛,是可以的。
      RuntimeException是Exception的子类,可以被Exception捕获。
Question 2
Given:
11. static class A {
12. void process() throws Exception { throw new Exception(); }
13. }
14. static class B extends A {
15. void process() { System.out.println(“B”)}
16. }
17. public static void main(String[] args) { 
18  .A a=new B();
19.   a.process();
20.}
What is the result?
A. B
B. The code runs with no output.
C. An exception is thrown at runtime.
D. Compilation fails because of an error in line 15.
E. Compilation fails because of an error in line 18. 
F. Compilation fails because of an error in line 19. 
答案:F
考点:方法的重写(重写方法异常抛出部分的理解)
      多态
      静态内部类以及其实例的创建
说明:
19.a.process(); 是多态调用,调用的应该是类B的process方法,这个方法只是允许抛出RuntimeException, 所以19行在理论上不需要进行异常相关处理,系统会自动抛出该异常,但是多态只是在运行时,系统方能识别,在编译的时候,系统还是按照类A的process方法来进行验证,所以出现错误,因为类A抛出的是检查异常,必须显式被捕获或者抛出。
Question 3
Given: 
11. static classA {
12. void process() throws Exception { throw new Exception(); } 
java常见笔试题
13. }
14. static class B extends A {
15. void process() { System.out.println(B”); 
16. }
17. public static void main(String[] args) {
18. new B().process();
19. }
What is the result? 
A. B
B. The code runs with no output.
C. Compilation fails because of an error in line 12.
D. Compilation fails because of an error in line 15.
E. Compilation fails because of an error in line 18.
答案:A
考点:方法的重写(重写方法异常抛出部分的理解)
      静态内部类以及其实例的创建
Question 4
Given:
84. try {
85. ResourceConnection con = resourceFactory.getConnection();
86. Results r = con.query(“GET INFO FROM CUSTOMER”)
87. info = r.getData(); 
88. con.close(); 
89. } catch (ResourceException re) { 
90. errorLog.wriMessage());
91. }
92. return info; 
Which is true if a ResourceException is thrown on line 86?
A. Line 92 will not execute.
B. The connection will not be retrieved in line 85.
C. The resource connection will not be closed on line 88. 
D. The enclosing method will throw an exception to its caller.
答案:C
考点:try..catch结构的理解
      异常的捕获和处理
说明:由于抛出的ResourceException, 能够被catch块捕获(标配), 所以异常在方法中就被处理掉了,不会抛出该方法。
      根据try块操作上规定,一旦抛出异常,抛出异常语句后续部分的try块语句将不再运行。

Question 5
Click the Exhibit button.
1. public class A {
2. public void method1() { 
3. B b= new B();
4. b.method2(); 
5. // more code here
6. }
7. }
1. public class B { 
2. public void method2() {
3.  c=new C(); 
4. c.method3(); 
学习php必备软件5.
// more code here
6. }
7. }
1. public class C { 
2. public void method3() {
3. // more code here
4. }
5. } 
Given:
25. try {
26. A a=new A();
27. a.method1();
28. } catch (Exception e) {
29. System.out.print(“an error occurred!”)
30. } 
Which two are true if a NullPointerException is thrown on line 3 of
class C? (Choose two.)
A. The application will crash. 
B. The code on line 29 will be executed.
C. The code on line 5 of class A will execute.
os系统怎么使用D. The code on line 5 of class B will execute.
E. The exception will be propagated back to line 27.
答案:BE
考点:异常的抛出、捕获和处理
说明:
jquery的hide方法
      一般来说,异常的抛出,最终终将被处理,本方法不处理,则抛给主调方法,关键是要能抛的出去,因为NullpointerException是RuntimeException,所以一路没有阻碍,最终 propagated back 到达27行,Exception是所有异常的父类,所以该异常在这里被处理了,

Question 6
Click the Exhibit button.
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. } 
6. }
7. }
reactnative上传图片1. public class B {
2. public void method2() throws TestException { 
3. // more code here
4. } 
5. }
1. public class TestException extends Exception {
2. }

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。