閱讀下面程序public class Test implements Runnable{public static void main(String[]args
閱讀下面程序 public class Test implements Runnable{ public static void main(String[]args){ _______________________________________; t. start(); } public void mR(){ System. out. println("Hello!"); }} 在程序下畫線處填入正確選項是
A.Test t=flew Test()
B.Thread t=new Thread();
C.Thread t=new Thread(new Test());
D.Test t=new Thread();
正確答案:C解析:根據t. start()可知t應該是一個Thread類,排除A)。Thread類與Test類之間沒有繼承關系,所以排除D)。B)沒有指定創(chuàng)建線程的對象,因此t. start()語句不能使Test類的run方法運行。所以選C)。
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。