码迷,mamicode.com
首页 > 其他好文 > 详细

concurrent之BlockingQueue

时间:2014-10-25 21:22:50      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   strong   sp   数据   on   log   

BlockingQueue  是接口  阻塞队列

常用的方法有:

  抛出异常 特殊值 阻塞 超时
插入 add(e) offer(e) put(e) offer(e, time, unit)
移除 remove() poll() take() poll(time, unit)
检查 element() peek() 不可用 不可用

 

 

实现它的类有:

1.ArrayBlockingQueue:数组形式的先进先出的阻塞队列;

2.SynchronousQueue:在放入的时候,只有另外一个线程取走数据后,才能放成功;称之为同步队列;

concurrent之BlockingQueue

标签:style   blog   http   ar   strong   sp   数据   on   log   

原文地址:http://www.cnblogs.com/oterman/p/4050827.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!