黑马程序员技术交流社区
标题:
模拟铁路售票
[打印本页]
作者:
648947721
时间:
2014-9-11 20:43
标题:
模拟铁路售票
public static void main(String[] args) {
new TicketsSeller().start();
new TicketsSeller().start();
new TicketsSeller().start();
new TicketsSeller().start();
}
}
class TicketsSeller extends Thread {
private static int tickets = 100;
private static Object obj = new Object();
public void run() {
while(true) {
synchronized(obj) {
if(tickets == 0)
break;
try {
Thread.sleep(10); //使运行结果更加符合实际情况
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(getName() + "...这是第" + tickets-- + "号票");
}
}
}
}
复制代码
作者:
黄凯旋
时间:
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