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
1
final
BlockingQueue
<
Object
>
blockingQ
=
new
ArrayBlockingQueue
<
Object
>
(
10
);
2
Thread thread
=
new
Thread(
"
consumer thread
"
)
{
3
public
void
run()
{
4
for
(;;)
{
5
try
{
6
Object object
=
blockingQ.poll(
1
, TimeUnit.SECONDS);
//
防止死等
7
if
(object
==
null
)
{
8
continue
;
//
或者做其他处理
9
}
10
}
catch
(InterruptedException e)
{
11
break
;
12
}
catch
(Exception e)
{
13
//
handle exception
14
}
15
}
16
}
17
}
;
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
关于持续集成的问题
jsp web shell
cmd5
oracle read file context
Blind Cmd or bash
jboss oday test
thread test
Powered by:
BlogJava
Copyright © shnulaa
日历
<
2010年9月
>
日
一
二
三
四
五
六
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
公告
常用链接
我的随笔
我的评论
我的参与
留言簿
给我留言
查看公开留言
查看私人留言
随笔分类
java(7)
linux(3)
maven(1)
随笔档案
2012年6月 (2)
2011年4月 (1)
2010年9月 (12)
文章档案
2012年6月 (2)
sd
http://geniusman.co.cc/
http://geniusman.co.cc/
http://shnulaa.68480.net/
http://shnulaa.68480.net/
shnulaa
shnulaa
shnulaa
shnulaa
搜索
积分与排名
积分 - 4447
排名 - 3187
最新评论
阅读排行榜
1. putty 的配色方案(1592)
2. jsp web shell(279)
3. 关于持续集成的问题(272)
4. cmd5(231)
5. http://geniusman.co.cc/http://geniusman.co.cc/(225)
评论排行榜
1. http://geniusman.co.cc/http://geniusman.co.cc/(0)
2. sss(0)
3. 一个比较不错的linux学习网站(0)
4. putty 的配色方案(0)
5. 关于持续集成的问题(0)