Java中重要的集合类关系

Collection<--List<--Vector
Collection<--List<--ArrayList
Collection<--List<--LinkedList
Collection<--Set<--HashSet
Collection<--Set<--HashSet<--LinkedHashSet
Collection<--Set<--SortedSet<--TreeSet

他们在性能和特点都有区别。各有侧重点。在使用时需谨慎选择。

你可能感兴趣的:(java,list)