【并发编程】-并发容器

在上一篇文章简单了解了一下线程池。自定义线程池有5个参数,其中第五个就是选择并发容器。而Java帮我们封装好的几个线程池,也都用了相应的并发容器,接下来看一下Java中有哪些并发容器呢?

ConcurrentMap、CopyOnWriteArrayList、SynchronizedList、ConcurrentLinkedQueue、LinkedBlockingQueue、ArrayBlockingQueue、DelayQueue、TransferQueue、SynchronousQueue

ConcurrentMap

它是一个接口,实现类有两个:ConcurrentHashMap、ConcurrentSkipListMap

· ConcurrentHashMap

线程安全且高效的HashMap,内容无序。
并发量不是很高的情况,更高效。

· ConcurrentSkipListMap

线程安全且高效的HashMap,内容有序。
对于并发量特表高的程序,使用ConcurrentSkipListMap更高效。

public static void main(String[] args) {
//        ConcurrentMap
        Map<String,String> map=new ConcurrentHashMap<>();//运行时间:1162 高并发不排序
//        Map<String,String> map=new ConcurrentSkipListMap<>();//运行时间:2094  高并发并且排序

        Random r=new Random();
        Thread[] ths=new Thread[100];
        CountDownLatch latch=new CountDownLatch(ths.length);//门闩
        long start=System.currentTimeMillis();
        for(int i=0;i<ths.length;i++) {
            ths[i] = new Thread(() -> {
                for (int j = 0; j < 10000; j++) map.put("a" + r.nextInt(100), "a" + r.nextInt(100));
                latch.countDown();//门闩值减1
            });
        }

        Arrays.asList(ths).forEach(t->t.start());
        try {
            latch.await();//阻塞等待门闩值为0
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        long end=System.currentTimeMillis();
        System.out.println(end-start);
    }

对此程序来说,并法量为10000,则ConcurrentHashMap执行的时间更短一些。

CopyOnWriteArrayList

使用了“写时复制”的思想。
只在增删改上加了锁,查没有加锁,但是它在高并发下不会出问题。因为它在增删改都是将队列复制一份,修改完之后再将地址指向修改完成的那个队列。
故它的特点是:读的快,写的慢。

public static void main(String[] args) {
        List<String> lists=
//                new ArrayList<>();//没有锁,会出并发问题,效率高
//                new Vector<>();//有锁
            new CopyOnWriteArrayList<>();//有锁,写的慢,读的快
        Random r=new Random();
        Thread[] ths =new Thread[100];
        for(int i=0;i<ths.length;i++){
            Runnable task=new Runnable() {
                @Override
                public void run() {
                    for(int i=0;i<1000;i++)lists.add("a"+r.nextInt(10000));
                }
            };
            ths[i]=new Thread(task);
        }
        runAndComputeTime(ths);
        System.out.println(lists.size());
    }
    static void runAndComputeTime(Thread[] ths){
        long s1=System.currentTimeMillis();
        Arrays.asList(ths).forEach(t->t.start());
        Arrays.asList(ths).forEach(t->{
            try {
                t.join();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        long s2=System.currentTimeMillis();
        System.out.println(s2-s1);
    }

这种并发容器的使用场景是:读多写少的业务。

SynchronizedList

加了锁的list。
该对象的每个方法是原子的,但是该对象的两个方法可不是原子的。

public static void main(String[] args) {
        List<String> strs=new ArrayList<>();//没有加锁
        List<String> strsSync= Collections.synchronizedList(strs);//加了锁的list
        
        /*以下两个方法线程不安全*/
        strsSync.add("aaa");//线程安全
        strsSync.remove("aaa");//线程安全
    }

比如以下程序

public class T03_SynchronizedList {
    public static void main(String[] args) {
        List<String> strs = new ArrayList<>();//没有加锁
        List<String> strsSync = Collections.synchronizedList(strs);//加了锁的list

            new Thread(() -> {
                if (strsSync.isEmpty()) {
                    try {
                        TimeUnit.MILLISECONDS.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    strsSync.add("aaa");
                }
            }).start();
        try {
            TimeUnit.MILLISECONDS.sleep(500);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        if (strsSync.isEmpty()) {
            strsSync.add("bbb");
        }
        try {
            TimeUnit.MILLISECONDS.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println(strsSync);
}

当strsSync不为空的时候,添加“aaa”。
输出结果:
在这里插入图片描述
显然不是线程安全的。这时候还是需要自己同步的。使用synchronized

public static void main(String[] args) {
        List<String> strs = new ArrayList<>();//没有加锁
        List<String> strsSync = Collections.synchronizedList(strs);//加了锁的list

            System.out.println(strsSync.isEmpty());
            new Thread(() -> {
                synchronized (strsSync) {
                    if (strsSync.isEmpty()) {
                        try {
                            TimeUnit.MILLISECONDS.sleep(1000);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }
                        strsSync.add("aaa");
                    }
                }
            }).start();
        try {
            TimeUnit.MILLISECONDS.sleep(500);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        if (strsSync.isEmpty()) {
            strsSync.add("bbb");
        }
        try {
            TimeUnit.MILLISECONDS.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println(strsSync);
}

输出结果:
在这里插入图片描述

ConcurrentLinkedQueue

无界线程安全队列。
常用的方法介绍:
pool:取出第一个元素,队列中也删除。如果队列为空,返回null
peek:读第一个元素,但队列中仍然存在。
offer:将指定元素插入队列的尾部。如果队列为空,返回null

public static void main(String[] args) {
        Queue<String> strs =new ConcurrentLinkedQueue<>();
        for(int i=0;i<10;i++){
            strs.offer("a"+i);
        }
        System.out.println(strs);

        System.out.println(strs.size());

        System.out.println(strs.poll());
        System.out.println(strs.size());

        System.out.println(strs.peek());
        System.out.println(strs.size());
    }

输出结果:
在这里插入图片描述

LinkedBlockingQueue

无界队列。不指定容量,默认为Integer.MAX_VALUE。
读写操作可并行,采用可重入锁保证并发情况下的线程安全。
常用方法:
取元素
take():队列为空时阻塞
pool():返回队顶元素,且从队列清除。队列为空时,返回空。
peek():返回队顶元素,队列保留。队列为空时返回null。
remove():移除元素。队列为空时抛出异常。成功移除返回true。
添加数据
put():队列满时阻塞
offer():队列满时添加失败,返回false。还可以指定等待多长时间之内插入成功返回true
eg:strs.offer(“aaa”,1, TimeUnit.SECONDS);

ArrayBlockingQueue

有界队列。必须指定队列长度。
常用方法参考上边那个,LinkedBlockingQueue。

DelayQueue

延迟队列,执行定时任务。任务按等待时间长短排序

static BlockingQueue<MyTask> tasks=new DelayQueue<>();//等待时间最长的在最前面,里面的任务等待多长时间可以被拿
    static class MyTask implements Delayed{
        long runningTime;

        MyTask(long rt){
            this.runningTime=rt;
        }
        @Override
        public long getDelay(TimeUnit unit) {
            return unit.convert(runningTime=System.currentTimeMillis(),TimeUnit.MILLISECONDS);
        }

        @Override
        public int compareTo(Delayed o) {
            if(this.getDelay(TimeUnit.MILLISECONDS)<o.getDelay(TimeUnit.MILLISECONDS))
                return -1;
            else if(this.getDelay(TimeUnit.MILLISECONDS)>o.getDelay(TimeUnit.MILLISECONDS))
                return 1;
            return 0;
        }
        @Override
        public String toString(){
            return ""+runningTime;
        }

        public static void main(String[] args) throws InterruptedException {
            long now=System.currentTimeMillis();
            MyTask t1=new MyTask(now+1000);
            MyTask t2=new MyTask(now+2000);
            MyTask t3=new MyTask(now+1500);
            MyTask t4=new MyTask(now+2000);
            MyTask t5=new MyTask(now+500);

            tasks.put(t1);
            tasks.put(t2);
            tasks.put(t3);
            tasks.put(t4);
            tasks.put(t5);

            System.out.println(tasks);
            for(int i=0;i<5;i++){
                System.out.println(tasks.take());
            }
        }
    }

TransferQueue

生产的消息直接给消费者,如果没有消费者,会阻塞。

public static void main(String[] args) throws InterruptedException {
        LinkedTransferQueue<String> strs=new LinkedTransferQueue<>();
        new Thread(()->{
            try {
                System.out.println(strs.take());
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }).start();//这个线程注释,程序会阻塞
        strs.transfer("aaa");
        new Thread(()->{
            try {
                System.out.println(strs.take());
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }).start();
    }

将第一个线程注释掉,也就是先transfer在取元素,则会阻塞。因为transfer生产的消息必须直接给消费者。

SynchronousQueue

容量为0的队列。
使用put()方法,没有消费者的时候会阻塞等待消费者。
有add()方法,但是使用会报错。

public static void main(String[] args) throws InterruptedException {
        BlockingQueue<String> strs=new SynchronousQueue<>();
        new Thread(()->{
            try {
                System.out.println(strs.take());
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }).start();
        strs.put("aaa");//阻塞等待消费者
//        strs.add("aaa");//不可以
        System.out.println(strs.size());
    }

运行结果:
在这里插入图片描述

上一篇文章介绍了Java中的线程池分别使用的并发容器
FixedThreadPool(固定个数线程池):LinkedBlockingQueue
CachedThreadPool(弹性线程池):SynchronousQueue
SingleThreadExecutor(单线程线程池):LinkedBlockingQueue
ScheduleThreadPool(定时器线程池):DelayedWorkQueue

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值