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>

posted @ 2018-06-07 16:35  Chris,Cai  阅读(169)  评论(0编辑  收藏  举报