閱讀下列代碼public class Test implements Runnable{public void run(Thread t){System. out. p
閱讀下列代碼 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.將拋出一個異常
B.沒有輸出并正常結(jié)束
C.輸出“Running”并正常結(jié)束
D.程序第2行將出現(xiàn)一個編譯錯誤