标签:runnable stack nbsp false 先进先出 需要 learn www stack实现
package com.dh.learn.queue; import java.util.concurrent.SynchronousQueue; // SynchronousQueue put/take 操作必须匹配,否则线程等待,直到与当前操作匹配的操作出现 // SynchronousQueue 没有容量,即存即取。可指定fair,为true时底层用Queue实现(先进先出),为false时,用stack实现(后进先出)。 //参考:https://www.jianshu.com/p/c4855acb57ec public class LearnSynchronousQueue { static SynchronousQueue<String> sy = new SynchronousQueue<>(); public static void main(String[] args) throws InterruptedException { new Thread(new Runnable() { @Override public void run() { try { System.out.println("线程开始取元素"); sy.take(); System.out.println("线程取元素"); } catch (InterruptedException e) { e.printStackTrace(); } } }).start(); // offer 与 put的区别, // SynchronousQueue的 put 需要等待另外一个线程take该元素时,才会执行 // offer方法不等待,直接返回false sy.offer("111"); System.out.println("放置完111 false"); sy.offer("222"); System.out.println("放置完222 false"); sy.put("333"); System.out.println("放置完333"); // sy.take(); } }
标签:runnable stack nbsp false 先进先出 需要 learn www stack实现
原文地址:https://www.cnblogs.com/han6/p/11308115.html