黑马程序员技术交流社区

标题: 模拟铁路售票 [打印本页]

作者: 648947721    时间: 2014-9-11 20:43
标题: 模拟铁路售票
  1. public static void main(String[] args) {

  2.         new TicketsSeller().start();       
  3.                 new TicketsSeller().start();
  4.                 new TicketsSeller().start();
  5.                 new TicketsSeller().start();
  6.         }

  7. }

  8. class TicketsSeller extends Thread {
  9.         private static int tickets = 100;
  10.         private static Object obj = new Object();
  11.         public void run() {
  12.                 while(true) {
  13.                         synchronized(obj) {
  14.                                 if(tickets == 0)       
  15.                                         break;           
  16.            try {
  17.                                         Thread.sleep(10);                                  //使运行结果更加符合实际情况
  18.            } catch (InterruptedException e) {
  19.                                         e.printStackTrace();
  20.                                 }
  21.                                 System.out.println(getName() + "...这是第" + tickets-- + "号票");
  22.           }
  23.                 }
  24.         }
  25. }
复制代码



作者: 黄凯旋    时间: 2014-9-11 21:31
多线程模拟卖票o.o
作者: 648947721    时间: 2014-9-12 20:54
黄凯旋 发表于 2014-9-11 21:31
多线程模拟卖票o.o

是的是的




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