多线程之生产者消费者模式的JAVA实现

话不多说,直接上代码。

public class ProductConsume {
    public static void main(String[] args) {
        MessageQueue queue=new MessageQueue(2);

        for (int i=0;i<3;i++){
            int id=i;
            new Thread("生产者"+i){
                @Override
                public void run() {
                    try {
                        queue.put(new Message(id,"值"+id));
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }.start();
        }
        new Thread("消费者"){
            @Override
            public void run() {
                try {
                    while (true) {
                        Thread.sleep(1000);
                        Message message=queue.take();
                    }
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }.start();
    }
}

//消息队列类,实现java线程间通信
class MessageQueue{
    //消息队列集合
    private LinkedList<Message> list=new LinkedList<Message>();
    //容量
    private int capacity;
    //获取消息
    public Message take() throws InterruptedException {
        //检查队列是否为空
        synchronized (list) {
            while (list.isEmpty()){
                System.out.println("队列为空,消费者线程等待");
                list.wait();
            }
            //从队列头部返回消息
            Message message=list.removeFirst();
            list.notifyAll();
            System.out.println("已消费消息"+message);
            return message;
        }
    }

    //存入消息
    public void put(Message message) throws InterruptedException {
        synchronized (list){
            while (list.size()==capacity){
                System.out.println("队列已满,生产者线程等待");
                list.wait();
            }
            //新的消息加到队列尾部
            list.addLast(message);
            System.out.println("已生产消息"+message);
            list.notifyAll();
        }
    }

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

final class Message{
    private int id;
    private Object value;

    public Message(int id, Object value) {
        this.id = id;
        this.value = value;
    }

    public int getId() {
        return id;
    }

    public Object getValue() {
        return value;
    }

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

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值