单项选择题
阅读下面程序
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();