案例——生产者和消费者(java)

 

 

package it.CP;

public class boxMilk {
    private int box;

    //定义一个成员变量表示奶箱的状态
    private boolean state = false;

    public synchronized void put(int box) {
        //如果有牛奶,则需要等待
        if (state) {
            try {
                wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        //如果没有则放入牛奶
        this.box = box;
        System.out.println("生产者放入第" + box + "瓶奶");
        //生产完毕后,修改奶箱的状态
        state = true;
        //唤醒其他等待的线程
        notifyAll();

    }

    public synchronized void get() {
        //如果没牛奶,则需要等待放入牛奶
        if(!state){
            try {
                wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        //如果有牛奶,则需要拿走
        System.out.println("消费者拿掉第" + box + "瓶奶");
        //消费完后,需要修改奶箱状态
        state = false;
        //唤醒其他等待的线程
        notifyAll();
    }
}
package it.CP;

public class Producer implements Runnable {

    private boxMilk b;

    public Producer(boxMilk b) {
        this.b = b;
    }

    @Override
    public void run() {
        for (int i = 1; i <= 5; i++) {
            b.put(i);
        }
    }
}
package it.CP;

public class Customer implements Runnable {

    private boxMilk b;

    public Customer(boxMilk b) {
        this.b = b;
    }

    @Override
    public void run() {
        while (true) {
            b.get();
        }
    }
}

package it.CP;

public class test {
    public static void main(String[] args) {

        //创建奶箱对象,这是共享数据区域
        boxMilk  b = new boxMilk();

        //创建生产者对象,把奶箱对象作为构造方法参数传递,因为在这个类中要调用存储牛奶的操作
        Producer p = new Producer(b);
        //创建生产者对象,把奶箱对象作为构造方法参数传递,因为在这个类中要调用获取牛奶的操作
        Customer c = new Customer(b);

        //创建2个线程对象,分别把生产者和消费者对象作为构造方法参数传递
        Thread t1 = new Thread(p);
        Thread t2 = new Thread(c);

        //启动线程
        t1.start();
        t2.start();

    }
}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值