黑马程序员技术交流社区

标题: 线程里的问题 [打印本页]

作者: 逝....曾经    时间: 2015-5-26 23:51
标题: 线程里的问题
确保多线程的安全性,能不能不用同步代码块synchronized,用join()方法可以不
例如:class TicketRunnable implements Runnable{
        private int tickets = 100;
        public void run(){
                while(true){
                Thread.currentThread().join();
                        if(tickets>0){
                                try{Thread.sleep(10);}catch(Exception e){}
                                System.out.println(Thread.currentThread().getName()+"出售第"+tickets--);
                        }
                }
        }
}
public class ThreadDemo8 {
        public static void main(String[] args) {
                TicketRunnable t = new TicketRunnable();
                Thread t0 = new Thread(t);
                Thread t1 = new Thread(t);
                Thread t2 = new Thread(t);
               
                t0.start();
                t1.start();
                t2.start();
        }
}
这个样子行不





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