通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下列程序的运行结果是( )。
class Test extends Thread{ public static void main(String[]args){ Thread t=new Thread(); t.start(); } public void run(){ System.out.println("Hello"); } }