我是靠谱客的博主 高贵纸鹤,这篇文章主要介绍BlockingQueue简单demo,现在分享给大家,希望可以做个参考。

复制代码
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
public static void main(String args[]){ final BlockingQueue<String> queue = new ArrayBlockingQueue<String>(1); for (int i=0; i<4; i++){ new Thread(new Runnable() { @Override public void run() { while (true){ try { String log = queue.take(); printLog(log); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }).start(); } for (int i=0; i<16; i++){ final String log = "" + (i+1); { try { queue.put(log); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } } private static void printLog(String log){ System.out.println(log + ":" + System.currentTimeMillis() / 1000); try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } }



输出结果是:


1:1358643672
2:1358643672
3:1358643672
4:1358643672
5:1358643673
6:1358643673
7:1358643673
8:1358643673
9:1358643674
10:1358643674
11:1358643674
12:1358643674
13:1358643675
14:1358643675
15:1358643675
16:1358643675

最后

以上就是高贵纸鹤最近收集整理的关于BlockingQueue简单demo的全部内容,更多相关BlockingQueue简单demo内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(78)

评论列表共有 0 条评论

立即
投稿
返回
顶部