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

线程安全的集合操作类

时间:2017-12-03 15:37:55      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:col   must   lis   sync   实现   常见   cto   shm   集合类   

常见的操作接口有:Map,List,Set,Vector 其最常用的实现类有:HashMap,ArrayList,LinkedList,HashSet

但是只有Vector是线程安全的,Collections实现了一个些方法可以保证常用的集合类达到线程安全:

Map: Map<Object,Object> map =  Collections.synchronizedMap(new HashMap<>());

Set:   Set<Object> set1 = Collections.synchronizedSet(new HashSet<>());

List:  List<String> list = Collections.synchronizedList(new LinkedList<>());     

        List<String> list = Collections.synchronizedList(new ArrayList<>());

注意 使用时必须在同步块中使用如:

Set s = Collections.synchronizedSet(new HashSet());
      ...
  synchronized(s) {
      Iterator i = s.iterator(); // Must be in the synchronized block
      while (i.hasNext())
          foo(i.next());
  }
不然会导致无法确定的行为。

线程安全的集合操作类

标签:col   must   lis   sync   实现   常见   cto   shm   集合类   

原文地址:http://www.cnblogs.com/LIUWEI123/p/7966115.html

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