当前位置: 代码迷 >> Java相关 >> 关于线程的小问题,求指教
  详细解决方案

关于线程的小问题,求指教

热度:96   发布时间:2011-11-08 09:22:18.0
关于线程的小问题,求指教
源代码是:
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
不理解,求指教。
搜索更多相关的解决方案: 源代码  public  sleep  

----------------解决方案--------------------------------------------------------
代码敲错了,一个是compute,一个是compute1,而你main函数里创建了两个compute对象,应该有个是compute1的
----------------解决方案--------------------------------------------------------
回复 2楼 zhengxw
非常感谢
----------------解决方案--------------------------------------------------------
程序代码:
compute t=new compute();
compute1 t1=new compute1();
//我也经常犯这样的错误
----------------解决方案--------------------------------------------------------
  相关解决方案