集合随笔

1. ArrayList 和 HashMap 是否线程安全?

Collection ArrayList HashMap HashSet 都是非同步的,线程是不安全的

集合中:VectorHashTable 是线程安全的

Collection —-> 线程安全:Collections.synchronizedCollection()
ArrayList —–> Collections.synchronizedList()
HashMap ——> Collections.synchronizedMap()
HashSet ——-> Collections.synchronizedSet()
-------------本文结束感谢您的阅读-------------