如有下列代码: public class MyRunnable implements Runnable { public void run() { ...... } }下列那行代码可以创建并启动线程________。( )
A.
new Runnable(MyRunnable).start();
B.
new Thread(MyRunnable).run();
C.
new Thread(new MyRunnable()).start();
D.
new MyRunnable().start();