SCJP 1.6版考題 119

出自 陳富國維基館
於 2013年3月30日 (六) 04:11 由 Ikk (對話 | 貢獻) 所做的修訂 (新頁面: Given: 11. public static void main(String[] args){ 12. String str = "null"; 13. if (str == null) { 14. System.out.println("null"); 15. }else (str.length() == 0) { 16. ...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽搜尋
Given:
11. public static void main(String[] args){
12.   String str = "null";
13.   if (str == null) {
14.     System.out.println("null");
15.   }else (str.length() == 0) {
16.     System.outprintln("zero");
17.   }else{
18.     System.out.println("some");
19.   }
20. }


What is the result?
  A. null
  B. zero
  C. some
  D. Compilation fails.
  E. An exception is thrown at runtime.

解答


Ans: D

解說: 15行少了if