摘要: package com.smbea.demo.thread; public class SaleTicket3 { private static int count = 20; // 总票数 private static synchronized boolean sell(String node){ if(0 < count){ ... 阅读全文
posted @ 2017-01-09 00:54 hapday 阅读(188) 评论(0) 推荐(0)
摘要: package com.smbea.demo.thread; public class SaleTicket2 { private static int count = 20;//总票数 private static synchronized boolean sell(int node){ if(0 < count){ coun... 阅读全文
posted @ 2017-01-09 00:51 hapday 阅读(1029) 评论(0) 推荐(0)