多线程模拟火车站售票并发

花了一天的时间才搞懂的操作,以前觉得自己懂了,但是实践起来却又是另外一回事。总之受益良多。

不能在对象里sleep,对象里写while就是一次性的。
原子锁是线程的东西,也不要放在对象方法中
run方法就是写逻辑的
单一原则

public class Train {

    private static int count;  //总票数

    public Train() {
    }

    public Train(int count) {
        this.count = count;
    }

    public int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }

    //销售方法
    public boolean sale() {
        if (count>0) {
            System.out.println(Thread.currentThread().getName()+"正在出售一张票,还剩"+count--+"张");
            return true;
        }else {
            return false;
        }
    }

}
public class Test {

    public static void main(String[] args) {
        Train train = new Train(10);
        Thread1 t1 = new Thread1(train);
        Thread1 t2 = new Thread1(train);
        t1.setName("t1");
        t2.setName("t2");
        t1.start();
        t2.start();
    }

}

class Thread1 extends Thread {

    private Train train;

    public Thread1(Train train) {
        this.train = train;
    }

    @Override
    public void run() {
        while (train.sale()) {
            synchronized (train) {
                try {
                    Thread.sleep(500);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }

    }

}

在这里插入图片描述

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值