生产者消费者模式

模拟消息队列的生产者消费者模式

package day09;

import java.util.LinkedList;

public class Test_09 {

    public static void main(String[] args) {

        MessageQueue queue = new MessageQueue(2);
        for (int i = 0; i < 3; i++) {
            int id = i;
            new Thread(() ->{
                queue.put(new Message(id , "id :"+id));
            } , "生产者" + i).start();
        }

        new Thread(()->{
            while (true){
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                queue.take();
            }
        },"消费者 ").start();

    }
}

//消息队列类
class MessageQueue{

    private LinkedList<Message> list = new LinkedList<>();

    private int capcity;

    public MessageQueue(int capcity){
        this.capcity = capcity;
    }

    //生产者
    public void put(Message msg){
        synchronized (list){
            while (list.size() >= capcity){
                try {
                    System.out.println("容量满了 ... 没办法生产了");
                    list.wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            System.out.println("生产的是 : "+msg.toString());
            list.addLast(msg);
            list.notifyAll(); //唤醒
        }
    }

    //消费者
    public Message take(){
        synchronized (list){
            while (list.isEmpty() ){
                try {
                    System.out.println("一个都没有...没办法消费");
                    list.wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            System.out.println("来了..来了..");
            list.notifyAll();
            return list.removeFirst();
        }
    }
}

class Message{
    private int id;
    private Object value;

    @Override
    public String toString() {
        return "Message{" +
                "id=" + id +
                ", value=" + value +
                '}';
    }

    public int getId() {
        return id;
    }

    public Object getValue() {
        return value;
    }

    public Message(int id, Object value) {
        this.id = id;
        this.value = value;
    }
}
生产的是 : Message{id=1, value=id :1}
生产的是 : Message{id=0, value=id :0}
容量满了 ... 没办法生产了
来了..来了..
生产的是 : Message{id=2, value=id :2}
来了..来了..
来了..来了..
一个都没有...没办法消费
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值