0%

collection

常用线程安全的类型对比

线程安全 非线程安全
Vector ArrayList, LinkedList
HashTable HashMap, LinkedHashMap, HashSet, TreeMap, TreeSet
StringBuffer StringBuilder

0.1. HashMap vs HashTable

  • HashMap 线程不安全, 但有 fast-fail 机制; HashTable 线程安全
  • HashMap 允许 key 为 null; HashTable 则不允许