更多"阅读下列代码段。 class Test implements Run"的相关试题:
[单项选择]阅读下面程序
class Test implements Runnable
public static void main (String[] args)
Test t=new Test( );
t.start( );
public void run( )
下列关于上述程序的叙述正确的是______。
A. 程序不能通过编译,因为start()方法在Test类中没有定义
B. 程序编译通过,但运行时出错,提示start()方法没有定义
C. 程序不能通过编译,因为run()方法没有定义方法体
D. 程序编译通过,且运行正常
[单项选择]阅读下面代码
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的循环控制条件不能为true
D. 程序不能通过编译,因为run()方法的返回值类型不是void
[单项选择]阅读下面程序
class Test implements Runnable
public static void main(String[] args)
Test t=new Test( );
t.start( ):
public void run( )
下列关于上述程序的叙述正确的是
A. 程序不能通过编译,因为start()方法在Test类中没有定义
B. 程序编译通过,但运行时出错,提示start()方法没有定义
C. 程序不能通过编译,因为run()方法没有定义方法体
D. 程序编译通过,且运行正常
[单项选择]阅读下面程序 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 Test());
D. Test t=new Thread();
[单项选择]下列代码段执行结果为( )。
public class Test
public static void main(String args[ ])
System.out.println("abc"+3+4+5);
System.out.println(3+4+5+"abc");
A. 编译出错
B. abc345和abc345
C. abc和12
D. abc345和12abc
[单项选择]下列代码段的执行结果是( )。
public class Test
public static void main(String args[])
String s1=new String("hello");
String s2=new String"hello");
System.out.println(s1==s2);
System.out.println(s1.equal(s2));
A. true false
B. true true
C. false true
D. false false
[单项选择]下面代码段的输出结果为( )。
public class Test
public static void main(String sss[])
int i=0xFFFFFFF1;
int j=~i;
A. 0
B. 1
C. 14
D. -15
[单项选择]下列代码段执行结果为( )。 public class Test { public static void main(String args[]) { System.out.println("abc"+3+4+5); System.out.println(3+4+5+"abc"); } }
A. 编译出错
B. abc345 abc345
C. abc和12
D. abc345和12abc
[单项选择]下面代码段的输出结果为( )。 public class Test { public static void main(String sss[]) { int i=0xFFFFFFFl; int j=~i; } }
A. 0
B. 1
C. 14
D. -15
[单项选择]阅读下列代码
public class Test2005
public static void main(String args[])
System.out. pfintln(~(0xa5)&0xaa);
其运行结果是( )。
A. 0xa5
B. 10
C. 0x50
D. 0xaa
[单项选择]阅读下列代码
public class Test{
public static void main(String args[]){
System.out.println(89>>1);
}
}
其运行结果是【 】
A. 44
B. 45
C. 88
D. 90
[单项选择]阅读下面代码
public class Test
public static void main(String[]args)
System.out.println(2>010:8);
其运行的结果是
A. 2
B. 0
C. 10
D. 8
[单项选择]阅读下列代码
public class Test
public static void main (String args[])
System.out.printIn(89>1);
其运行结果是______。
A. 44
B. 45
C. 88
D. 90
[单项选择]阅读下列代码:
public class Test
public static void main(String args[])[
System. out.println(89>>1 );
A. 44
B. 45
C. 88
D. 90