更多"阅读下面代码 class Test implements Runna"的相关试题:
[单项选择]阅读下面代码
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. 程序编译通过,且运行正常
[单项选择]阅读下面程序
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
[单项选择]阅读下面程序
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 Thread();
C. Thread t=new Thread(new Test());
D. Test t=new Thread();
[单项选择]
阅读下列代码
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 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( ){
While(flag) {
x++;
y++;
system.out.println(“(” +x_ “,”+y+”)”);
if (x>=10)
flag=false;
}
}
}
下列对程序运行结果描述的选项中,正确的是()
A. 每行的(x,y)中,可能有;每一对(x,y)值都出现两次。
B. 每行的(x,y)中,可能有;每一对(x,y)值仅出现一次。
C. 每行的(x,y)中,可能有x=y;每一对(x,y)值都出现两次。
D. 每行的(x,y)中,可能有x=y;每一对(x,y)值都出现一次。
[单项选择]阅读下列程序。
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( );
Thead t1=new Thead(r);
Thead t2=new Thead(r);
t1.start( );
t2.start( );
Public void run( )
While(flag)
x++;
y++;
system.out.println("("+x_","+y+")");
if(x>=10)
flag=false;
下列对程序运行结果描述的选项中,正确的是( )。
A. 每行的(x,y)中,可能有x≠y;每一对(x,y)值都出现两次。
B. 每行的(x,y)中,可能有x≠y;每一对(x,y)值仅出现一次。
C. 每行的(x,y)中,可能有x=y;每一对(x,y)值都出现两次。
D. 每行的(x,y)中,可能有x=y;每一对(x,y)值都出现一次。
[单项选择]阅读下面代码
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 Test2005
public static void main(String args[])
System.out.println(~(Oxa5)&Oxaa);
其运行结果是
A. Oxa5
B. 10
C. Ox50
D. Oxaa
[单项选择]阅读下面代码
public class Test
String s="One World One Dream";
public static void main(String[] args)
System.out.println(s);
其运行的结果是
A. args
B. One World One Dream
C. s
D. 编译时出错
[单项选择]阅读下列代码
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.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
[单项选择]阅读下列代码
public class Test2005
public static void main (String args[])
System.out.printIn(~(Oxa5) &Oxaa);
其运行结果是______。
A. Oxa5
B. 10
C. Ox50
D. Oxaa