创建具有线程安全的集合(List Map)

  • Post author:
  • Post category:其他




创建具有线程安全的集合(List Map)


// 创建线程安全的List
List<Object> list = Collections.synchronizedList(new ArrayList<>());
        
// 创建线程安全的Map
Map<String, Object> map = Collections.synchronizedMap(new HashMap<String, Object>());



比较实用!!



版权声明:本文为weixin_34067359原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。