下面程序的功能是創(chuàng)建一個顯示5個“Hello!”的線程并啟動運行。請將程序補充完整。 public class Thr
下面程序的功能是創(chuàng)建一個顯示5個“Hello!”的線程并啟動運行。請將程序補充完整。
public class ThreadTest extends Thread {
public static void main(String args[]) {
ThreadTest t=new ______;
t.start();
}
public void run() {
int i=0;
while(true) {
System.out.println("Hello!");
if(i++==4)break;
}
}
}
正確答案:ThreadTest()ThreadTest()
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。