黑马程序员技术交流社区

标题: 模拟售票程序 [打印本页]

作者: 為了夢想    时间: 2015-7-25 14:16
标题: 模拟售票程序
  1. public class ThreadDemo3 implements Runnable  {

  2.         private int tickets = 10;
  3.         private boolean flag = true;
  4.        
  5.         @Override
  6.         public void run() {
  7.                
  8.                 while(flag){
  9.                         test();
  10.                 }
  11.                
  12.         }
  13.   public synchronized void test(){
  14.             if(tickets <=0){
  15.                     flag = false ;
  16.                     return;
  17.             }
  18.             
  19.             try {
  20.                         Thread.sleep(500);
  21.                 } catch (InterruptedException e) {
  22.                         e.printStackTrace();
  23.                 }
  24.                 System.out.println(Thread.currentThread().getName()+"出售了"+tickets--);

  25.   }
  26.         public static void main(String[] args) {
  27.                 ThreadDemo3 th = new ThreadDemo3();
  28.                 Thread th1 = new Thread(th,"窗口a");
  29.                 Thread th2 = new Thread(th,"窗口b");
  30.             Thread th3 = new Thread(th,"窗口c");
  31.             Thread th4 = new Thread(th,"窗口d");
  32.             
  33.             th1.start();
  34.             th2.start();
  35.             th3.start();
  36.             th4.start();
  37.             
  38.         }
  39.        
  40. }
复制代码







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