"SCJP 1.6版考題 238" 修訂間的差異

出自 陳富國維基館
前往: 導覽搜尋
(新頁面: Which two code fragments will execute the method doStuff() in a separate thread? (Choose two.) A. new Thread(){                public void r...)
 
(無差異)

於 2013年3月26日 (二) 07:44 的最新修訂

Which two code fragments will execute the method doStuff() in a separate thread? (Choose two.)

A. new Thread(){

               public void run(){doStuff();}

      };

B. new Thread(){

                  public void start(){doStuff();

       };

C new Thread(){

                   public void start(){doStuff();}

     }.run();

D. new Thread(){

                    public void run(){doStuff();}

     }.start();

E. new Thread(new Runnable(){

                    public void run(){doStuff();}

     }).run();

F. new Thread(new Runnable(){

                    public void run(){doStuff();}

     }).start();


解答


Ans: D F

解說: 題目要求那二個程式片段可以在一個分開的執行緒上執行doStuff方法。
          執行緒的啟動是要呼叫start方法,若是以呼叫run來看,run方法是執行在main執行緒之上,不是分開的執行緒。