shnulaa

Never deter till tomorrow that which you can do today
posts - 15, comments - 0, trackbacks - 0, articles - 2
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

thread test

Posted on 2010-09-26 16:04 shnulaa 阅读(132) 评论(0)  编辑  收藏 所属分类: java
 1final BlockingQueue<Object> blockingQ = new ArrayBlockingQueue<Object>(10);
 2Thread thread = new Thread("consumer thread"{
 3public void run() {
 4for (;;) {
 5try {
 6Object object = blockingQ.poll(1, TimeUnit.SECONDS); //防止死等
 7if (object == null{
 8continue// 或者做其他处理
 9}

10}
 catch (InterruptedException e) {
11break;
12}
 catch (Exception e) {
13// handle exception
14}

15}

16}

17}
;

只有注册用户登录后才能发表评论。


网站导航: