并发 Queue,ConcurrentLinkedQueue,BlockingQueue,PriorityBlockingQueue,DelayQueue

在并发队列上 JDK 提供了两套实现,一个是以 ConcurrentLinkedQueue 为代表的高性能队列,一个是以 BlockingQueue 接口为代表的阻塞队列,无论哪种都继承自 Queue。

ConcurrentLinkedQueue

这是一个适用于高并发场景下的队列,通过无锁的方式,实现了高并发状态下的高性能, 通常 ConcurrentLinkedQueue 性能好于 BlockingQueue。它是一个基于链接节点的无界 线程安全队列。该队列的元素遵循先进先出的原则。头是最先加入的,尾是最近加入的,该队列不允许 null 元素
ConcurrentLinkedQueue 重要方法: add()和 offer()都是加入元素的方法(在 ConcurrentLinkedQueue 中,这俩个方 法没有任何区别) poll()和 peek()都是取头元素节点,区别在于前者会删除元素,后者不会。

// 高性能无阻塞无界队列:ConcurrentLinkedQueue 
ConcurrentLinkedQueue<String> clq = new ConcurrentLinkedQueue<>(); clq.offer("a"); 
clq.offer("b"); 
clq.offer("c"); 
clq.offer("d"); 
clq.add("e"); 
System.out.println(clq.poll()); // a 从头部取出元素,并从队列里删除 
System.out.println(clq.size()); // 4 
System.out.println(clq.peek()); // b 
System.out.println(clq.size()); // 4

BlockingQueue 接口

ArrayBlockingQueue:阻塞有界队列
基于数组的阻塞队列实现,在 ArrayBlockingQueue 内部, 维护了一个定长数组,以便缓存队列中的数据对象,其内部没实现读写分离,也就意味着生产和消费不能完全并行,长度是需要定义的,可以指定先进先出或者先进后出,也叫有界队列,在很多场合非常适合使用。

ArrayBlockingQueue<String> array = new ArrayBlockingQueue<>(5);
        array.put("a");
        array.put("b");
        array.add("c");
        array.add("d");
        array.add("e");
        // array.add("f");
        System.out.println(array.offer("a", 3, TimeUnit.SECONDS));

LinkedBlockingQueue:阻塞无界队列,可声明长度
LinkedBlockingQueue:基于链表的阻塞队列,同 ArrayBlockingQueue 类似,其 内部也维持着一个数据缓冲队列(该队列由一个链表构成),LinkedBlockingQueue 之所 以能够高效的处理并发数据,是因为其内部实现采用分离锁(读写分离两个锁),从而实现 生产者和消费者操作的完全并行运行。他是一个无界队列。
SynchronousQueue:无缓冲队列
SynchronousQueue:一种没有缓冲的队列,生产者产生的数据直接会被消费者获取并消费。
不同的场景,使用不同的队列。
在这里插入图片描述
完整代码如下:


public class UseQueue {

    public static void main(String[] args) throws Exception {

        // 高性能无阻塞无界队列:ConcurrentLinkedQueue
        ConcurrentLinkedQueue<String> clq = new ConcurrentLinkedQueue<>();
        clq.offer("a");
        clq.offer("b");
        clq.offer("c");
        clq.offer("d");
        clq.add("e");

        System.out.println(clq.size());    // 5
        System.out.println(clq.poll());    // a 从头部取出元素,并从队列里删除
        System.out.println(clq.size());    // 4
        System.out.println(clq.peek());    // b
        System.out.println(clq.size());    // 4

        System.out.println("------------------------------------------------");

        // 阻塞有界队列
        ArrayBlockingQueue<String> array = new ArrayBlockingQueue<>(5);
        array.put("a");
        array.put("b");
        array.add("c");
        array.add("d");
        array.add("e");
        // array.add("f");
        System.out.println(array.offer("a", 3, TimeUnit.SECONDS));

        System.out.println("------------------------------------------------");

        // 阻塞无界队列,可声明长度
        LinkedBlockingQueue<String> lbq = new LinkedBlockingQueue<>();
        lbq.offer("a");
        lbq.offer("b");
        lbq.offer("c");
        lbq.offer("d");
        lbq.offer("e");
        lbq.add("f");
        System.out.println(lbq.size());
        lbq.forEach(System.out::println);

        System.out.println("------------------------------------------------");

        List<String> list = new ArrayList<>();
        System.out.println(lbq.drainTo(list, 3));
        System.out.println(list.size());
        list.forEach(System.out::println);

        System.out.println("------------------------------------------------");

        // 无缓冲队列
        final SynchronousQueue<String> q = new SynchronousQueue<>();

        Thread t1 = new Thread(() -> {
            try {
                System.out.println(q.take());
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        t1.start();

        Thread t2 = new Thread(() -> q.add("asdasd"));
        t2.start();
    }
}

PriorityBlockingQueue:基于优先级的阻塞队列
PriorityBlockingQueue:基于优先级的阻塞队列(优先级的判断通过构造函数传入 的 Compatory 对象来决定,也就是说传入队列的对象必须实现 Comparable 接口,在实现 PriorityBlockingQueue 时,内部控制线程同步的锁采用的是公平锁,他也是一个无界的队列。
任务接口代码:


public class Task implements Comparable<Task> {
    private int id;
    private String name;
    public Task() {
    }
    public Task(int id, String name) {
        this.id = id;
        this.name = name;
    }
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    @Override
    public int compareTo(Task task) {
        return this.id > task.id ? 1 : (this.id < task.id ? -1 : 0);
    }
    @Override
    public String toString() {
        return "Task{" +
                "id=" + id +
                ", name='" + name + '\'' +
                '}';
    }
}
public class UsePriorityBlockingQueue {
    public static void main(String[] args) throws InterruptedException {
        PriorityBlockingQueue<Task> q = new PriorityBlockingQueue<>();
        Task t1 = new Task(3, "t1");
        Task t2 = new Task(5, "t2");
        Task t3 = new Task(2, "t3");
        Task t4 = new Task(8, "t4");
        Task t5 = new Task(6, "t5");

        q.put(t1);
        q.put(t2);
        q.add(t3);
        q.add(t4);
        q.add(t5);
        q.forEach(System.out::println);
        System.out.println("------------------------");
        System.out.println(q.take());
        System.out.println(q.take());
        System.out.println(q.take());
        System.out.println(q.take());
        System.out.println(q.take());
        System.out.println(q);
    }
}

DelayQueue:带有延迟时间的 Queue
DelayQueue:带有延迟时间的 Queue,其中的元素只有当其指定的延迟时间到了,才能够从队列中获取到该元素。 DelayQueue 中的元素必须实现Delayed 接口, Delay Queue 是一个没有大小限制的队列,应用场景很多,比如对缓存超时的数据进行移除、任务超时处理、空闲连接的关闭等等。
该队列使用一个网吧上网的例子来展示:
WangBa.java

public class WangBa implements Runnable {

    private DelayQueue<Wangmin> queue = new DelayQueue<>();

    public boolean yinye = true;// 是否营业

    public void shangji(String name, String id, int money) {
        Wangmin man = new Wangmin(name, id, 1000 * money + System.currentTimeMillis());
        System.out.println("网名" + man.getName() + " 身份证" + man.getId() + "交钱" + money + "块,开始上机...");
        this.queue.add(man);
    }
    public void xiaji(Wangmin man) {
        System.out.println("网名" + man.getName() + " 身份证" + man.getId() + "时间到下机...");
    }

    @Override
    public void run() {
        while (yinye) {
            try {
                Wangmin man = queue.take();
                xiaji(man);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String args[]) {
        try {
            System.out.println("网吧开始营业");
            WangBa wangBa = new WangBa();
            Thread shangwang = new Thread(wangBa);
            shangwang.start();

            wangBa.shangji("路人甲", "123", 1);
            wangBa.shangji("路人乙", "234", 10);
            wangBa.shangji("路人丙", "345", 5);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}  

Wangmin.java


public class Wangmin implements Delayed {

    // 身份证
    private String id;
    // 姓名
    private String name;
    // 下机时间
    private long endTime;
    // 定义时间类
    private TimeUnit timeUnit = TimeUnit.SECONDS;

    public Wangmin(String id, String name, long endTime) {
        this.id = id;
        this.name = name;
        this.endTime = endTime;
    }

    public String getName() {
        return this.name;
    }

    public String getId() {
        return this.id;
    }

    /**
     * 用来判断是否到了截止时间
     */
    @Override
    public long getDelay(TimeUnit unit) {
        return endTime - System.currentTimeMillis();
    }

    /**
     * 相互比较排序用
     */
    @Override
    public int compareTo(Delayed delayed) {
        Wangmin w = (Wangmin) delayed;
        return this.getDelay(this.timeUnit) - w.getDelay(this.timeUnit) > 0 ? 1 : 0;
    }

}

我们使用实现Runnable 接口来实现我们的业务。
在这里插入图片描述

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值