【2019春招准备:13. 安全Collections----13.1 BlockingQueue阻塞队列家族】

参考:强烈推荐 http://www.cnblogs.com/WangHaiMing/p/8798709.html
BlockingQueue接口

public interface BlockingQueue<E> extends Queue<E> {
	boolean add(E e);
	boolean offer(E e);
	void put(E e) throws InterruptedException;
	boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException;
	E take() throws InterruptedException;
	E poll(long timeout, TimeUnit unit) throws InterruptedException;
	int remainingCapacity();
	boolean remove(Object o);
	public boolean contains(Object o);
	int drainTo(Collection<? super E> c);
	int drainTo(Collection<? super E> c, int maxElements);
}

家庭成员
【2019春招准备:13. 安全Collections----13.1 BlockingQueue阻塞队列家族】