[填空題] 下面程序創(chuàng)建了一個線程并運行,請?zhí)羁眨钩绦蛲暾?public class ThreadTest { public static void m
2021-07-20
[填空題] 下面程序創(chuàng)建了一個線程并運行,請?zhí)羁?,使程序完整?public class ThreadTest { public static void main (String[] args) { Hello h=Hew Hello (); 【8】 t.start (); } } class Hello implements Runnable { int i; public void run () { while(true) { System.out.println("Hello" +i++); if(i==5) break; } } }
正確答案:Threadt=new Thread(h);
參考解析:在通過實現(xiàn)Runnable接口來創(chuàng)建線程以后,該線程的啟動將使得對象的run ()方法被調用。題目中缺少線程創(chuàng)建的語句,因此應該填寫Thread t=new Thread(h);,該語句創(chuàng)建 Hello類的實例對象h的線程。
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。