黑马程序员技术交流社区

标题: 多线程---打印出来的数据不明白原因 [打印本页]

作者: 左华清    时间: 2012-2-22 16:27
标题: 多线程---打印出来的数据不明白原因
本帖最后由 左华清 于 2012-2-23 11:44 编辑

public class ThreadDemo1 {
        public static void main(String[]args){
                TestThread tt=new TestThread();
                new Thread(tt).start();
                new Thread(tt).start();
        }
}
class TestThread implements Runnable{
        int tickets=100;
        public void run(){
                while(true){
                        if(tickets>0){
                                try{Thread.sleep(1);}catch(Exception e){};
                                System.out.println("run:"+Thread.currentThread().getName()+"-----is sailing ticket"+tickets--);
                        }
                }
        }
}

打印出来的数据出现0
这是什么情况呀
作者: 刘基军    时间: 2012-2-22 16:37
你并没有使用synchronized关键字进行同步,
作者: dangfei    时间: 2012-2-22 18:08
最后几行:
run:Thread-0-----is sailing ticket2
run:Thread-1-----is sailing ticket1
run:Thread-0-----is sailing ticket0
原因是两个线程操作的是同一个tt,同一个tickets。当Thread-0在sleep(1)的时候,Thread-1过来把tickets减成1,所以Thread-0 sleep()后继续执行tickets--就成0了。
作者: 沈样    时间: 2012-2-22 22:34
在写多线程的方法时要考虑同步的问题我我觉得
作者: 左华清    时间: 2012-2-23 11:44
谢谢,明白了!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2