本文樓主主要以用戶在售票廳購買車票為背景進(jìn)行多線程的實(shí)現(xiàn)。假設(shè)A市到B市的車票共50張,共有3個(gè)售票窗口在進(jìn)行售票,使用多線程來模擬理想情況下的用戶購票:
實(shí)現(xiàn)Runnable的Ticket類:
1 package com.jon.thread; 2 3 public class TicketSell implements Runnable { 4 private int tickets = 50;//設(shè)置車票數(shù)量 5 @Override 6 public void run() { 7 while(true){ 8 if(tickets>0){ 9 //輸出當(dāng)前是哪個(gè)線程在出售第幾張車票10 System.out.println(Thread.currentThread().getName() + "正在售第" + (tickets--) + "張車票");11 }12 }13 }14 15 }