JAVA 常用集合框架体系结构

Iterable接口:

Collection接口: 

List接口

LinkedList

ArrayList

Vector

Stack

  Set接口

  SortedSet接口

  TreeSet

  HashSet

  LinkedHashSet

     Queue接口

    Deque接口

  LinkedList

 

Map接口:

SortedMap<K,V>接口:

TreeMap<K,V>

HashMap<K,V>

LinkedHashMap<K,V>

Dictionary<K,V>抽象类:

Hashtable<K,V>类:

Properties

 

 

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