Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 562 Bytes

File metadata and controls

41 lines (29 loc) · 562 Bytes

Java Collection

  • 集合视图(Collection Views)
是由集合本身提供的一种访问数据的方式,同时对视图的任何修改也会影响到集合。

Collection

  • Collection

  • AbstractCollection

List

  • List

  • AbstractList

  • AbstractSequentialList

  • LinkedList

  • ArrayList

  • Vector

  • Stack

Set

  • Set

  • SortedSet

  • AbstractSet

  • HashSet

  • LinkedHashSet

  • TreeSet

  • Queue

  • Deque

  • ArrayDeque

Reference