黑马程序员技术交流社区

标题: 多线程售票的例子解释 [打印本页]

作者: 你的☞样子    时间: 2013-6-24 08:50
标题: 多线程售票的例子解释
public class ManyDemo implements Runnable{
        private int ticket=1000;
        public static void main(String[] args)throws Exception {
         ManyDemo md=new ManyDemo();
         Thread t1=new Thread(md);
         Thread t3=new Thread(md);
         
         Thread t4=new Thread(md);
       
         Thread t2=new Thread(md);
         t1.start();
         t2.start();
       
         t3.start();
         t4.start();
     
        }
   
       
        public void run() {
                while(true){
                       
                        show();
                }
               
        }
        public synchronized void show(){
               
                if(ticket>0){
                       try {
                                Thread.sleep(10);
                        } catch (InterruptedException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
                        System.out.println(Thread.currentThread().getName()+"正在卖["+(ticket--)+"]号票");
                }
        }

}

作者: 许庭洲    时间: 2013-6-28 07:04
值得学习ing!




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