阅读下列代码:public class Test im

阅读下列代码:

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();
    }
}

代码运行结果是( )。

答案
D

题目信息

题号:5722
题型:单选题
难度:普通