【单选题】阅读下列程序:class ThreadTest extends Thread{ public static void main(String[]args){ Thread t=new Thread(this); t.start(); } public void run(){ System.out.print('A thread test.'); }} 对该程序而言,正确结论是 ( )
A.
该程序能够通过编译并打印输出“A thread test.”
B.
该程序能够通过编译,但运行时将不调用ThreadTest类中的run()方法,因此不产生任何输出
C.
该程序存在编译错误,因为在main()方法中不能使用this指针