[單項(xiàng)選擇題] 閱讀下列代碼public class Test implements Runnable{ public void run(Thread t){
2021-07-20
[單項(xiàng)選擇題] 閱讀下列代碼public class Test implements Runnable{ public void run(Thread t){ System. out. println("Running. "); } public static void main(String[]args){ Thread tt=new Thread(new Test()); tt. start(); }} 代碼運(yùn)行結(jié)果是
A.將拋出一個(gè)異常
B.沒(méi)有輸出并正常結(jié)束
C.輸出“Running”并正常結(jié)束
D.程序第2行將出現(xiàn)一個(gè)編譯錯(cuò)誤
正確答案:C
參考解析:類Test實(shí)現(xiàn)Runnable接口,main函數(shù)中實(shí)例化了一個(gè)新的以Test對(duì)象為執(zhí)行任務(wù)的線程對(duì)象,然后調(diào)用start()方法啟動(dòng)子線程,程序正常執(zhí)行,子線程進(jìn)入入口run()方法,輸出字符串“Running”。
詞條內(nèi)容僅供參考,如果您需要解決具體問(wèn)題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。