1.List
- ArrayList
- LinkedList
- 在中间进行的插入和删除操作代价较小,随机访问比ArrayList较慢
- 特性集比ArrayList大
2.set
- HashSet
- TreeSet
- LinkHashSet
- 有顺序,按插入顺序
- 因查询速度的原因也用了散列
- 使用了链表来维护元素的插入顺序
3.map
同set
- HashMap
- TreeMap
- LinkedHashMap
java容器collection的一些简单特点
原文:http://www.cnblogs.com/heitan/p/5733986.html