SCJP 1.6版考題 239

出自 陳富國維基館
於 2013年3月26日 (二) 07:39 由 Ikk (對話 | 貢獻) 所做的修訂 (新頁面: Given: 1.     public class TestOne{ 2.                 public static void main(String[] args) throws Exception{ 3.     ...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽搜尋

Given:

1.     public class TestOne{

2.                 public static void main(String[] args) throws Exception{

3.                              Thread.sleep(3000); 4. System.out.println("sleep");

5.                 }

6.    }


What is the result?

A. Compilation fails.

B. An exception is thrown at runtime.

C. The code executes normally and prints "sleep".

D. The code executes normally, but nothing is printed.


解答


Ans: C

解說: 第3行呼叫Thread的類別方法sleep,睡眠3秒,之後繼續執行第4行