• 阻塞队列-SynchronousQueue


    1、阻塞队列-Synchronous是什么?

    Synchronous阻塞队列是一个不存储元素的队列,即单个元素队列。

    2、Synchronous阻塞队列代码验证

    public class SynchronousQueueDemo {
        public static void main(String[] args) {
    
            BlockingQueue queue = new SynchronousQueue();
    
            // 生产者线程进行put操作
            new Thread(()->{
                try {
                    System.out.println(Thread.currentThread().getName() + "	 put one");
                    queue.put("one");
    
                    System.out.println(Thread.currentThread().getName() + "	 put two");
                    queue.put("two");
    
                    System.out.println(Thread.currentThread().getName() + "	 put three");
                    queue.put("three");
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }, "t1").start();
    
            // 消费者线程进行take操作
            new Thread(()->{
                try {
                    TimeUnit.SECONDS.sleep(1);
                    System.out.println(Thread.currentThread().getName() + "	 take one");
                    queue.take();
    
                    TimeUnit.SECONDS.sleep(1);
                    System.out.println(Thread.currentThread().getName() + "	 take two");
                    queue.take();
    
                    TimeUnit.SECONDS.sleep(1);
                    System.out.println(Thread.currentThread().getName() + "	 take three");
                    queue.take();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }, "t2").start();
        }
    }
  • 相关阅读:
    LC 357. Count Numbers with Unique Digits
    LC 851. Loud and Rich
    LC 650. 2 Keys Keyboard
    LC 553. Optimal Division
    LC 672. Bulb Switcher II
    LC 413. Arithmetic Slices
    LC 648. Replace Words
    LC 959. Regions Cut By Slashes
    Spring框架学习之注解配置与AOP思想
    Spring框架学习之高级依赖关系配置(二)
  • 原文地址:https://www.cnblogs.com/xhyouyou/p/12465305.html
Copyright © 2020-2023  润新知