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