List Set Map
List<Interface>
1,List<E> extends Collection<E>,Collection<E> extends Iterable<E>
2,List<E> 的常用的具体实现类:
ArratList<E>,LinkedList<E>
Map<Interface>
1,Map<K,V>
2,Map<K,V>的常用具体实现类:
HashMap<K,V>,LinkedHashMap<K,V> TreeMap<K,V>,LinkedTreeMap<K,V>
Set<Interface>
1,Set<E> extends Collection<E>,Collection<E> extends Iterable<E>
2,Set<E> 的常用的具体实现类:
HashSet<E>,LinkedHashSet<E>
Aimer,c'est partager