关于线程的小问题,求指教
源代码是:public class thread1
{
public static void main(String [] args)
{
compute t=new compute();
compute t1=new compute();
t.start();
t1.start();
}
}
class compute extends Thread
{
int i=0;
public void run()
{
for(int i=0;i<10;i++)
{
System.out.println(i);
try
{
sleep(1000);
}
catch(Exception e){
}
}
}
}
class compute1 extends Thread
{
public void run()
{
for(int i=0;i<10;i++)
{
System.out.println("这个数字是:"+i);
try
{
sleep(1000);
}
catch(Exception e){
}
}
}
}
教材给出的输出结果是:
0
这个数字是:0
1
这个数字是:1
2
这个数字是:2
3
这个数字是:3
4
这个数字是:4
5
这个数字是:5
6
这个数字是:6
7
这个数字是:7
8
这个数字是:8
9
这个数字是:9
可是我用JCreator编后的结果是:
0
0
1
1
2
2
3
3
4
4
5
5
6
6
7
7
8
8
9
9
不理解,求指教。