我是靠谱客的博主 高贵纸鹤,最近开发中收集的这篇文章主要介绍BlockingQueue简单demo,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


	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所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部