Java Collection 集合类小结

Java Collection 集合类总结【关键字】Collection 集合 set List map?Set 接口: 典型实现HashSet、TreeSet不

Java Collection 集合类总结

【关键字】Collection 集合 set List map

?

Set 接口: 典型实现HashSet、TreeSet

不允许有重复没有顺序

List接口:典型实现ArrayList、LinkedList、Vector类(线程安全)

允许重复有特定的顺序 Collections.sort(list<T>)

Map接口:典型实现HashMap、TreeMap、Hashtable(线程安全)

元素拥有Keykey值不能重复,Value可以重复没有顺序(LinkedHashMap是有顺序的)