码迷,mamicode.com
首页 > 编程语言 > 详细

java 中如何声明线程安全的集合 set, map 和list

时间:2016-07-03 15:50:44      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

http://blog.sina.com.cn/s/blog_508938e10102v1ig.html

 

//make thread-safe list
  List MyStrList = Collections.synchronizedList(new ArrayList());
  MyStrList.add("123");
  MyStrList.add("abc");
  //make thread-safe hashset
  Set set=Collections.synchronizedSet(new HashSet());
  set.add(123);
  set.add(456);
  //make thread-safe hashmap
  Map map=Collections.synchronizedMap(new HashMap());
  map.put(1, "thb");
  map.put(12, "bill tang");

 

java 中如何声明线程安全的集合 set, map 和list

标签:

原文地址:http://www.cnblogs.com/whatlonelytear/p/5638082.html

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