Java Web 实战 08 - 多线程基础之阻塞队列

大家好 , 这篇文章给大家讲解的知识点是 : 阻塞队列 , 我们分成几个模块来了解阻塞队列

  1. 阻塞队列是什么 ?
  2. 生产者 - 消费者模型是什么 ?
  3. 标准库当中的阻塞队列是怎样实现的 ?
  4. 自己怎样实现一个简单的阻塞队列 ?

推荐大家跳转到此链接进行观看
上一篇文章的链接也给大家贴到这里了
在这里插入图片描述

阻塞队列

1. 阻塞队列是什么 ?

这里的阻塞队列和咱们内核中 , 表示阻塞状态的 PCB 的那个链表还不一样
我们这里的阻塞队列 , 是能够保证线程安全的队列 , 内部采用了锁机制来保证线程安全
他还有一个很大的特点 : 如果队列为空 , 尝试出队列 , 就会阻塞 ; 如果队列满 , 尝试入队列 , 也会阻塞

阻塞 : 就是让线程停下来等一等 , 本质上就是修改了线程的状态 , 让线程的 PCB 在内核中暂时不参与调度

其实就相当于餐厅营业 , 没人来吃饭了咱就关门停业 ? 餐厅人多 , 咱们可以让顾客稍微等一会

相对应的还有
无锁队列 : 也是一种线程安全的队列 , 但是实现内部没有使用锁 , 相比阻塞队列来说更加高效 , 需要消耗更多的 CPU 资源
消息队列 : 在队列中涵盖多种不同 “类型” 的元素 , 取元素的时候可以按照某个类型来取 , 做到针对该类型的先进先出 , 甚至说会把消息队列作为服务器 , 单独部署 (常见的有 : kafka , rocketmq , rabbitmq)

2. 生产者-消费者模型

image.png
使用生产者消费者模型 , 在工作中是非常频繁的

生产者-消费者模型的优点有很多 , 其中最明显的优点有两条 :

  1. 可以做到更好的 “解耦合”

image.png

  1. 能够做到 “削峰填谷” , 提高整个系统的抗风险能力

image.png

那么我们刚才介绍了解耦合 , 那再帮大家回顾一下高内聚的意思
写一个功能的时候 , 尽量让这个功能的代码能够集中放置 , 不要东一块西一块
类似于 “归类”
举个栗子 :
我们要是没对自己电脑的文件进行分门别类的话 , 到时候想要找一个文件就会特别困难 .
这就是高内聚的反例
如果我们把所有的文件分门别类的存储 , 把代码放到一个文件夹 , 把软件放到另一个文件夹 , 这样就类似于 “高内聚”

3. 标准库中的阻塞队列

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;

public class Demo20 {
    public static void main(String[] args) {
        // Java 标准库中的阻塞队列
        // BlockingQueue 是父类,我们要实例化他的接口
        BlockingQueue<Integer> queue = new LinkedBlockingQueue<>();

        // 消费者线程
        Thread customer = new Thread(() -> {
            while(true) {
                // BlockingQueue 虽然也支持 offer、poll 等普通队列的方法
                // 但是仍然推荐大家使用 put 来入队列,使用 take 来出队列(可以做到阻塞)
                try {
                    int val = queue.take();// Integer->int 自动拆箱
                    System.out.println("消费元素:" + val);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        });
        customer.start();

        // 生产者线程
        Thread producer = new Thread(() -> {
            int n = 0;
            while(true) {
                try {
                    System.out.println("生产元素:" + n);
                    queue.put(n);
                    n++;
                    Thread.sleep(500);// 方便观察
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        });
        producer.start();
    }
}

image.png

4. 自己实现一个阻塞队列

// 我们自己模拟一个阻塞队列
// 基于数组的方式实现阻塞队列
// 模拟两个方法:put入队列/take出队列
class MyBlockingQueue {
    // 假设阻塞队列最大是 1000 个元素
    private int[] items = new int[1000];
    // 队首
    private int head = 0;
    // 队尾
    private int tail = 0;
    // 队列的元素个数
    private int size = 0;

    // 入队列
    public void put(int value) {
        if(size == items.length) {
            // 队列已满,无法插入
            return;
        }
        items[tail++] = value;
        // 如果 tail 达到数组末尾,就需要从头开始
        if(tail == items.length) {
            tail = 0;
        }
        size++;
    }

    // 出队列
    public Integer take() {
        if(size == 0) {
            // 队列为空,无法出队列
            return null;
        }
        int ret = items[head++];
        if(size == items.length) {
            head = 0;
        }
        size--;
        return ret;
    }
}

public class Demo21 {
}

我们目前已经完成了最基本的队列的实现
接下来 , 我们就实现阻塞队列
阻塞队列需要满足两点 :

  1. 线程安全 : 通过加锁实现

image.png

// 我们自己模拟一个阻塞队列
// 基于数组的方式实现阻塞队列
// 模拟两个方法:put入队列/take出队列
class MyBlockingQueue {
    // 假设阻塞队列最大是 1000 个元素
    private int[] items = new int[1000];
    // 队首
    private int head = 0;
    // 队尾
    private int tail = 0;
    // 队列的元素个数
    private int size = 0;

    // 入队列
    public void put(int value) {
        synchronized (this) {
            if(size == items.length) {
                // 队列已满,无法插入
                return;
            }
            items[tail++] = value;
            // 如果 tail 达到数组末尾,就需要从头开始
            if(tail == items.length) {
                tail = 0;
            }
            size++;
        }
    }

    // 出队列
    public Integer take() {
        int ret = 0;
        synchronized (this) {
            if(size == 0) {
                // 队列为空,无法出队列
                return null;
            }
            ret = items[head++];
            if(size == items.length) {
                head = 0;
            }
            size--;
        }
        return ret;
    }
}

public class Demo21 {
}

  1. 阻塞 : 通过 wait() 实现
    1. 队列为空要阻塞 : 当队列不空的时候 , 就唤醒
    2. 队列未满要阻塞 : 当队列不满的时候 , 就唤醒
// 我们自己模拟一个阻塞队列
// 基于数组的方式实现阻塞队列
// 模拟两个方法:put入队列/take出队列
class MyBlockingQueue {
    // 假设阻塞队列最大是 1000 个元素
    private int[] items = new int[1000];
    // 队首
    private int head = 0;
    // 队尾
    private int tail = 0;
    // 队列的元素个数
    private int size = 0;

    // 入队列
    public void put(int value) throws InterruptedException {
        synchronized (this) {
            if(size == items.length) {
                // 队列满了,要进行阻塞
                this.wait();
            }
            items[tail++] = value;
            // 如果 tail 达到数组末尾,就需要从头开始
            if(tail == items.length) {
                tail = 0;
            }
            size++;
            // 队列不空的时候(插入元素成功),就需要唤醒
            // notify 即使没人在等待,多调用几次 notify 也没啥副作用
            this.notify();
        }
    }

    // 出队列
    public Integer take() throws InterruptedException {
        int ret = 0;
        synchronized (this) {
            if(size == 0) {
                // 队列为空,就阻塞等待
                this.wait();// wait 方法需要在 synchronized 里面使用
            }
            ret = items[head++];
            if(size == items.length) {
                head = 0;
            }
            size--;
            // 队列不满(取走一个元素),就需要唤醒
            this.notify();
        }
        return ret;
    }
}

public class Demo21 {
    public static void main(String[] args) throws InterruptedException {
        MyBlockingQueue myQueue = new MyBlockingQueue();
        myQueue.put(100);
        myQueue.take();
    }
}

image.png

然后 , 我们还需要在每个变量前面加上 volatile 关键字 , 因为这段代码既有读 , 又有写 , 为了防止内存可见性 , 所以加上 volatile关键字

// 我们自己模拟一个阻塞队列
// 基于数组的方式实现阻塞队列
// 模拟两个方法:put入队列/take出队列
class MyBlockingQueue {
    // 假设阻塞队列最大是 1000 个元素
    volatile private int[] items = new int[1000];
    // 队首
    volatile private int head = 0;
    // 队尾
    volatile private int tail = 0;
    // 队列的元素个数
    volatile private int size = 0;

    // 入队列
    public void put(int value) throws InterruptedException {
        synchronized (this) {
            if(size == items.length) {
                // 队列满了,要进行阻塞
                this.wait();
            }
            items[tail++] = value;
            // 如果 tail 达到数组末尾,就需要从头开始
            if(tail == items.length) {
                tail = 0;
            }
            size++;
            // 队列不空的时候(插入元素成功),就需要唤醒
            // notify 即使没人在等待,多调用几次 notify 也没啥副作用
            this.notify();
        }
    }

    // 出队列
    public Integer take() throws InterruptedException {
        int ret = 0;
        synchronized (this) {
            if(size == 0) {
                // 队列为空,就阻塞等待
                this.wait();// wait 方法需要在 synchronized 里面使用
            }
            ret = items[head++];
            if(size == items.length) {
                head = 0;
            }
            size--;
            // 队列不满(取走一个元素),就需要唤醒
            this.notify();
        }
        return ret;
    }
}

public class Demo21 {
    public static void main(String[] args) throws InterruptedException {
        MyBlockingQueue myQueue = new MyBlockingQueue();
        myQueue.put(100);
        myQueue.take();
    }
}

最后 , 我们再进行一个优化操作
image.png

// 我们自己模拟一个阻塞队列
// 基于数组的方式实现阻塞队列
// 模拟两个方法:put入队列/take出队列
class MyBlockingQueue {
    // 假设阻塞队列最大是 1000 个元素
    volatile private int[] items = new int[1000];
    // 队首
    volatile private int head = 0;
    // 队尾
    volatile private int tail = 0;
    // 队列的元素个数
    volatile private int size = 0;

    // 入队列
    public void put(int value) throws InterruptedException {
        synchronized (this) {
            while(size == items.length) {
                // 队列满了,要进行阻塞
                this.wait();
            }
            items[tail++] = value;
            // 如果 tail 达到数组末尾,就需要从头开始
            if(tail == items.length) {
                tail = 0;
            }
            size++;
            // 队列不空的时候(插入元素成功),就需要唤醒
            // notify 即使没人在等待,多调用几次 notify 也没啥副作用
            this.notify();
        }
    }

    // 出队列
    public Integer take() throws InterruptedException {
        int ret = 0;
        synchronized (this) {
            while(size == 0) {
                // 队列为空,就阻塞等待
                this.wait();// wait 方法需要在 synchronized 里面使用
            }
            ret = items[head++];
            if(size == items.length) {
                head = 0;
            }
            size--;
            // 队列不满(取走一个元素),就需要唤醒
            this.notify();
        }
        return ret;
    }
}

public class Demo21 {
    public static void main(String[] args) throws InterruptedException {
        
    }
}

接下来 , 我们就可以去模拟实现生产者-消费者模型

// 我们自己模拟一个阻塞队列
// 基于数组的方式实现阻塞队列
// 模拟两个方法:put入队列/take出队列
class MyBlockingQueue {
    // 假设阻塞队列最大是 1000 个元素
    volatile private int[] items = new int[1000];
    // 队首
    volatile private int head = 0;
    // 队尾
    volatile private int tail = 0;
    // 队列的元素个数
    volatile private int size = 0;

    // 入队列
    public void put(int value) throws InterruptedException {
        synchronized (this) {
            while(size == items.length) {
                // 队列满了,要进行阻塞
                this.wait();
            }
            items[tail++] = value;
            // 如果 tail 达到数组末尾,就需要从头开始
            if(tail == items.length) {
                tail = 0;
            }
            size++;
            // 队列不空的时候(插入元素成功),就需要唤醒
            // notify 即使没人在等待,多调用几次 notify 也没啥副作用
            this.notify();
        }
    }

    // 出队列
    public Integer take() throws InterruptedException {
        int ret = 0;
        synchronized (this) {
            while(size == 0) {
                // 队列为空,就阻塞等待
                this.wait();// wait 方法需要在 synchronized 里面使用
            }
            ret = items[head++];
            if(size == items.length) {
                head = 0;
            }
            size--;
            // 队列不满(取走一个元素),就需要唤醒
            this.notify();
        }
        return ret;
    }
}

public class Demo21 {
    public static void main(String[] args) throws InterruptedException {
        MyBlockingQueue queue = new MyBlockingQueue();

        // 消费者
        Thread customer = new Thread(() -> {
            while(true) {
                int value = 0;
                try {
                    value = queue.take();
                    System.out.println("消费:" + value);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        });
        customer.start();

        // 生产者
        Thread producer = new Thread(() -> {
            int value = 0;
            while(true) {
                try {
                    queue.put(value);
                    System.out.println("生产" + value);
                    value++;
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        });
        producer.start();
    }
}

到这里 , 阻塞队列的讲解就完毕了
对你有帮助的话请一键三连~
在这里插入图片描述

  • 10
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 14
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

加勒比海涛

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

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

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

打赏作者

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

抵扣说明:

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

余额充值