java 集合初解

java集合接口主要:Collection和 Map

Collection<--List<--Vector<--Stack --线程安全
Collection<--List<--LinkedList ---链表
Collection<--Set<--HashSet
Collection<--Set<--HashSet<--LinkedHashSet
Collection<--Set<--SortedSet<--TreeSet
 
工具类:Collections,Arrays,Iterable
原文地址:https://www.cnblogs.com/zslb/p/10374275.html