多线程售票系统模拟(实验证明其不足之处)

package thread_;

public class TicketSystem {
    public static void main(String[] args) {
//        TicketSystem01 ticketSystem01 = new TicketSystem01();
//        TicketSystem01 ticketSystem02 = new TicketSystem01();
//        TicketSystem01 ticketSystem03 = new TicketSystem01();
//        //出现票数超卖
//        ticketSystem01.start();
//        ticketSystem02.start();
//        ticketSystem03.start();
        //偶尔出现票数超卖,有隐患
        TicketSystem02 ticketSystem02 = new TicketSystem02();
        new Thread(ticketSystem02).start();//第一个线程
        new Thread(ticketSystem02).start();//第二个线程
        new Thread(ticketSystem02).start();//第三个线程
    }
}
class TicketSystem01 extends Thread{
    private static int ticketnum =100;//多个线程共享

    @Override
    public void run() {
        while(true){
            if (ticketnum<=0 ){//无票提示售罄
                System.out.println("售罄");
                break;
            }
            try {
                Thread.sleep(50);//有票间隔售卖时间 50ms
            } catch (InterruptedException e) {
                throw new RuntimeException(e);
            }
            System.out.println("窗口:"+Thread.currentThread().getName()+"售出一张票\t"+"还剩:"+(--ticketnum));
        }
    }
}
class TicketSystem02 implements Runnable{
    private  int ticketnum =100;//多个线程共享

    @Override
    public void run() {
        while(true){
            if (ticketnum<=0 ){//无票提示售罄
                System.out.println("售罄");
                break;
            }
            try {
                Thread.sleep(50);//有票间隔售卖时间 50ms
            } catch (InterruptedException e) {
                throw new RuntimeException(e);
            }
            System.out.println("窗口:"+Thread.currentThread().getName()+"售出一张票\t"+"还剩:"+(--ticketnum));
        }
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值