每天几条java(7)

Question: 27
Given:
31. // some code here
32. try {
33. // some code here
34. } catch (SomeException se) {
35. // some code here
36. } finally {
37. // some code here
38. }
Under which three circumstances will the code on line 37 be executed? (Choose three.)
A. The instance gets garbage collected.
B. The code on line 33 throws an exception.
C. The code on line 35 throws an exception.
D. The code on line 31 throws an exception.
E. The code on line 33 executes successfully.

Answer: B, C, E

 

A gc之后什么都没有了

会掷出例外的程式必须放在 try 

其他的都正确



Question: 28
Given:
11. class A {
12. public void  { System.out.print("A,"); }
13. class B extends A {
14. public void process() throws IOException {
15. super.process();
16. System.out.print("B,");
17. throw new IOException();
18. }
19. public static void main(String[] args) {
20. try { new B().process(); }
21. catch (IOException e) { System.out.println("Exception"); }}
What is the result?
A. Exception
B. A,B,Exception
C. Compilation fails because of an error in line 20.
D. Compilation fails because of an error in line 14.
E. A NullPointerException is thrown at runtime.

Answer: D

子类抛出了父类没有的已检查异常~~

 



Question: 29
Given a method that must ensure that its parameter is not null:
11. public void someMethod(Object value) {
12. // check for null value
...
20. System.out.println(value.getClass());
21. }
What, inserted at line 12, is the appropriate way to handle a null value?
A. assert value == null;
B. assert value != null, "value is null";
C. if (value == null) {
throw new AssertionException("value is null");
}
D. if (value == null) {
throw new IllegalArgumentException("value is null");
}

Answer: D

 

A      不要用断言对公共方法的参数进行判断

B      同上

C     没有AssertionException这个类; AssertionError继承自Error,处理和捕获 error是没有意义的

D      OK 抛出参数错误的异常.

 



Question: 30
Given:
11. static void test() throws Error {
12. if (true) throw new AssertionError();
13. System.out.print("test ");
14. }
15. public static void main(String[] args) {
16. try { test(); }
17. catch (Exception ex) { System.out.print("exception "); }
18. System.out.print("end ");
19. }
What is the result?
A. end
B. Compilation fails.
C. exception end
D. exception test end
E. A Throwable is thrown by main.
F. An Exception is thrown by main.

Answer: E

16行呼出一个AssertionError之后会有第11throw抛给main,但是17行的exception无法处理(exceptionerror没有继承关系),产生的error是一个throwable物件,由main抛出

 

posted @ 2014-04-20 09:17  Fresher_Z  阅读(159)  评论(0编辑  收藏  举报