[单选题]

阅读下面代码 public class Test implements Runnable { public void run(Thread t) { System.out.println("Running"); } public static void main(String[] args) { Thread tt=new Thread(new Test()); tt.start(); } } 代码运行的结果是

A.将抛出一个异常

B.没有输出并正常结束

C.输出“Running”并正常结束

D.程序第2行将出现一个编译错误

参考答案与解析:

相关试题

阅读下列代码public class Test implements Runna

[单选题]阅读下列代码 public class Test implements Runnable{ public void run(Thread t){ System. out. println("Running. "); } public static void main(String[]args){ Thread tt=new Thread(new Test()); tt. start(); } } 代码运行结果是A.将抛出一个异常B.没有输出并正常结束C.输出“Running”并正常结束D.程

  • 查看答案
  • 阅读下面程序public class Test implements Runna

    [单选题]阅读下面程序 public class Test implements Runnable{ public static void main(String[]args){ _______________________________________; t. start(); } public void mR(){ System. out. println("Hello!"); }} 在程序下画线处填入正确选项是A.Test t=flew Test()B.Thread t=new Th

  • 查看答案
  • 阅读下面程序public class Test implements Runna

    [单选题]阅读下面程序 public class Test implements Runnable{ public static void main(String[]args){ _______________________________________; t. start(); } public void mR(){ System. out. println("Hello!"); }} 在程序下画线处填入正确选项是A.Test t=flew Test()B.Thread t=new Th

  • 查看答案
  • 阅读下面程序public class Test implements Runna

    [单选题]阅读下面程序 public class Test implements Runnable { private int x=0; private int y=0; boolean flag=true; public static void main(String[]args) { Test r=new Test(); Thread t1=new Thread(r); Thread t2=new Thread(r); t1.start(); t2.start(); } public void run

  • 查看答案
  • 阅读下面程序public class Test implements Runna

    [单选题]阅读下面程序 public class Test implements Runnable { public static void main(String[] args) { ______ t.start(); } public void run() { System.out.println("Hello!"); } } 程序中下画线处应填入的正确选项是A.Test t=new Test();B.Thread t=new Thread();C.Thread t=new Thread(new

  • 查看答案
  • 阅读下面代码class Test implements Runnable { p

    [单选题]阅读下面代码 class Test implements Runnable { public int run() { int i=0; while(true) { i++; System.out.println("i="+i); } } } 上述代码的编译结果是A.程序通过编译,并且run()方法可以正常输出递增的i值B.程序通过编译,调用run()方法将不显示任何输出C.程序不能通过编译,因为while的循环控制条件不能为trueD.程序不能通过编译,因为run()方法的返回值类型不是vo

  • 查看答案
  • 阅读下面代码public class Test { public static

    [单选题]阅读下面代码 public class Test { public static void main(String avgs[]) { System.out.println(89>>1); } } 其运行结果是A.44B.45C.88D.90

  • 查看答案
  • 阅读下面代码public class Test { public static

    [单选题]阅读下面代码 public class Test { public static void main(String[]args) { System.out.println(2>0?10:8); } } 其运行的结果是A.2B.0C.10D.8

  • 查看答案
  • ( 18 )阅读下列程序Public class Test implements

    [单选题]( 18 )阅读下列程序Public class Test implements Runnable{Private int x=0;Private int y=o;boolean flag=true;Public static void main(string[ ] args) {Test r =new Test( );Thead t1=new Thead(r);Thead t2=new Thead(r);t1.start( );t2.start( );}Public void run(){Wh

  • 查看答案
  • 阅读下面代码public class Test2005 { public sta

    [单选题]阅读下面代码 public class Test2005 { public static void main(String args[]) { System.out.println(~(Oxa5)&Oxaa); } } 其运行结果是A.Oxa5B.10C.Ox50D.Oxaa

  • 查看答案
  • 阅读下面代码public class Test implements Runna