java集合总结

Java容器

Java容器分为Collection和Map,Collection保存单一对象而Map保存键值对。

List

linkedList

中间插入、删除快,优化顺序访问,随机访问慢

arrayList

随机访问和顺序访问快,中间插入、删除慢

Stack

Set

hashSet

TreeSet

LinkedHashSet

Map

hashmap

快速访问

treemap

键排序

linkedhashmap

插入顺序,散列

原文地址:https://www.cnblogs.com/darknessplus/p/10356743.html