Java用多執行緒實現賣票
阿新 • • 發佈:2019-01-11
Java小白一個,剛開始學習執行緒,在這個過程中遇到了一些麻煩,經過2天的努力,終於弄懂了用多執行緒實現賣票的程式,嗯嗯,記錄一下!
以上便是我的程式碼,希望能夠幫助到大家,同時也歡迎大家批評指正。public class TicketImpDemo { public static void main(String[] args) { Runnable target = new ticket(); new Thread(target, "A").start(); new Thread(target, "B").start(); new Thread(target, "C").start(); } } class ticket implements Runnable { static Object o = new Object(); int num = 5000; @Override public void run() { while (num > 0) { synchronized (o) { if (num > 0) { num--; System.out.println(Thread.currentThread().getName() + "賣出了第" + (5000 - num) + "張票"); } } } System.out.println("票都賣完啦!!!"); } }