阅读下列程序
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=o; boolean f
-
下列代码编译或执行结果的描述中,正确的是: class Test{ public static void main(String args[]){ TestThread
-
对下列程序的叙述中,正确的是: 1:public class X extends Thread implements Runnable{ 2: public void run(){ 3:
-
a中,执行以下代码后,说法正确的是 public class Test extends Thread { public static void main(String args[]) { Test
-
.out.println(i); } public static void main(String args[]) { Test test = new Test(); test.aMet