Java中的集合类主要包括Collection和Map两种,其中Collection储存着对象的集合,而Map则储存着键值对(Key-Value)的映射表,具体如下:

以下为各类的继承结构:
1 Collection
1.1 List
1)Stack

2) ArrayList

3)LinkedList

1.2 Queue
1)PriorityQueue

1.3 Set
1) HashSet

2)LinkedHashSet

3) TreeSet

2 Map
1) HashMap

2) TreeMap
