[填空題] 通過(guò)實(shí)現(xiàn)Runnable接口創(chuàng)建線程,請(qǐng)?jiān)诋嬀€處加入正確的代碼完成此程序 【9】 。 public class ThreadTest pu
2021-07-20
[填空題] 通過(guò)實(shí)現(xiàn)Runnable接口創(chuàng)建線程,請(qǐng)?jiān)诋嬀€處加入正確的代碼完成此程序 【9】 。
public class ThreadTest
public static void main(String args[ ])
Thread t1=new Thread(new Hello());
Thread t2=new Thread(new Hello());
______;
t2.start();
class Hello implements Runnable
int i;
public void run()
while(true)
System.out.println("Hello"+i++);
if(i==5) break;
正確答案:
t1.start();
參考解析:題中Hello類實(shí)現(xiàn)了Runnable接口,在ThreadTest類的main()方法中,Hello類的兩個(gè)實(shí)例對(duì)象分別創(chuàng)建了t1、t2兩個(gè)線程,并將線程啟動(dòng)。那么程序體中的畫線處應(yīng)該是將t1線程啟動(dòng)(調(diào)用方法start())。
詞條內(nèi)容僅供參考,如果您需要解決具體問(wèn)題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。