多線程同步

模擬賣票系統 public class Ticket implements Runnable { //當前擁有的票數 private int num = 100; public void run() { while(true) { if(num>0) { try{Thread.sleep(10);}catch (InterruptedException
相關文章
相關標籤/搜索