阻塞队列+生产者消费者模型

本文介绍了阻塞队列的概念和作用,包括在队列为空或满时的阻塞机制。详细讲解了Java标准库中的BlockingQueue接口及其ArrayBlockingQueue等实现类,重点讨论了put和take方法。此外,通过示例展示了如何使用BlockingQueue实现生产者消费者模型。最后,文章还提供了一个基于数组的自定义阻塞队列实现,强调了线程安全和wait/notify机制的重要性。
摘要由CSDN通过智能技术生成

目录

一.是什么?

二.标准库BlockingQueue的使用

1.put和take方法

2.实现生产者消费者模型

三.实现阻塞队列(基于数组)


一.是什么?

        阻塞队列是一种特殊的队列,也是遵循队列的基本特点,先进先出,但是它具有阻塞的功能。

  阻塞情形

  1)当队列为空时,执行出队列操作时,会发生阻塞,阻塞到另外的线程向队列中添加素为止。

  2)当队列满时,执行入队列操作时,会发生阻塞,阻塞到另外的线程向队列中添加元为止。


二.标准库BlockingQueue的使用

        首先,BlockingQueue是一个interface,其继承queue。BlockingQueue的实现类有ArrayBlockingQueue、LinkedBlockingQueue、PriorityBlockingQueue、 SynchronousQueue、DelayQueue(延时队列)。

1.put和take方法

        BlockingQueue的主要的方法是put和take,put为向队列中放入元素,take为向队列取元素,这两个动作都遵循"先入后出"的原则。

public static void main(String[] args) throws InterruptedException {
        BlockingQueue<Integer> blockingQueue = new LinkedBlockingQueue<>();
        blockingQueue.put(1);
        System.out.println(blockingQueue.take());
    }

2.实现生产者消费者模型

public static void main(String[] args) throws InterruptedException {
        BlockingQueue<Integer> blockingQueue = new LinkedBlockingQueue<>();
        Thread customer = new Thread(()->{
            while(true){
               try {
                   Integer ret = blockingQueue.take();
                   System.out.println("消费者"+ret);
               } catch (InterruptedException e) {
                   throw new RuntimeException(e);
               }
           }
        });
        customer.start();
        Thread producter = new Thread(()->{
           int count = 0;
           while(true){
               try {
                   blockingQueue.put(count);
                   System.out.println("生产者"+count);
                   Thread.sleep(500);
                   count++;
               } catch (InterruptedException e) {
                   throw new RuntimeException(e);
               }
           }
        });
        producter.start();
    }

三.实现阻塞队列(基于数组)

        使用数组的话,只需要两个头尾指针来标记队头和对尾,并使用size变量来记录当前队列的数据个数。

代码如下:

class myBlockingQueue {
    private Integer[] arr = null;
    private int head = 0;
    private int tail = 0;
    private int size = 0;

    public myBlockingQueue() {
        this.arr = new Integer[20];
    }

    public myBlockingQueue(int n) {
        this.arr = new Integer[n];
    }

    public synchronized void put(Integer value) throws InterruptedException {
        while (size == arr.length) {
            this.wait();
        }
        arr[tail] = value;
        tail++;
        if (tail >= arr.length) {
            tail = 0;
        }
        size++;
        this.notify();
    }

    public synchronized Integer take() throws InterruptedException {
        while (size == 0) {
            this.wait();
        }
        int ret = arr[head];
        head++;
        if (head >= arr.length) {
            head = 0;
        }
        size--;
        this.notify();
        return ret;
    }
}

注意点:

1️⃣.由于put和take操作要对数组进行读写,那么在多线程环境下,就会涉及到线程安全问题,使用synchronized加锁,防止bug。

2️⃣.在put时,当size和数组长度相同时,线程等待;在take时,当size为0时,线程等待。在每次调用put和take后,都调用notify,这样就实现了当take等待时,put一个元素,那么take解锁,put等待时同理。

3️⃣.由于每个wait被唤醒后,判断语句可能在当前仍然满足,需要继续等待,使用while避免此问题。

以上就是本文的全部内容了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

todd1er

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值