[單項選擇題] 閱讀下面代碼 public class Test implements Runnable { public void run(Thread
2021-07-20
[單項選擇題] 閱讀下面代碼 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(); } } 代碼運行的結(jié)果是
A.將拋出一個異常
B.沒有輸出并正常結(jié)束
C.輸出“Running”并正常結(jié)束
D.程序第2行將出現(xiàn)一個編譯錯誤
正確答案:D
參考解析:本題程序是通過實現(xiàn)Runnable接口創(chuàng)建進程,其中的run()方法是在Runnable接口中聲明的,沒有參數(shù),所以程序第二行編譯錯誤。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。