Collection
- ArrayList: 動態數組
- LinkedList: 雙向鏈表
- Vector: 動態數組、線程安全
- Stack: 繼承Vector,動態數組,FILO
- HashMap: table爲數組,entry爲鏈表
HashTable: 線程安全,相似於HashMap(不多使用)
- WeakHashMap:
- ConurrentHashMap:
- TreeMap: 紅黑樹、有序、可序列化
- HashSet:惟1、無序、非線程安全
- TreeSet:繼承TreeMap,有序、支持序列化
根據Java 集合系列目錄(Category)總結而成,感謝原做者的貢獻。html