Vector, ArrayList, HashTable, HashMap哪些是线程安全的,哪些不是

2023-07-06   


Vector and Hashtable are two collection classes that are inherently thread safe or synchronized; whereas, the classes ArrayList and HashMap are unsynchronized and must be `wrapped` via Collections.SynchronizedList or Collections.synchronizedMap if synchronization is desired.
   Vector和Hashtable是线程安全的,ArrayList和HashMap不是线程安全的而且必须要通过Collections.SynchronizedList或者Collections.synchronizedMap来包装一下才能实现同步。


相关内容:

  1. 说出ArrayList,Vector, LinkedList的存储性能和特性
  2. 正隆泰信息技术有限公司上机题
  3. 正隆泰信息技术有限公司上机题
  4. 万户网络JAVA程序员岗位招聘笔试试卷
  5. 你所知道的集合类都有哪些?主要方法?