【单选题】运行下列程序,会产生什么结果? ( ) public class X exlends Thread implements Runable{ public void run(){ System.out.println('this is run()'); } public static void main(String args[]) Thread t=new Thread(new X()); t.s...
【单选题】运行下列程序,产生的结果是 ( )。 public class X extends Thread implements Runable{ public void run(){ System.out.println("this is run()"); } public static void main(String args[]) { Thread t=new Thread(new...