Java Collection
1. Introduction
The Java collection can be roughly divided into four systems: Set, List, Queue and Map
Set
: unordered and unrepeatable; 无序,不可重复List
: ordered and repetable sets; 有序,可重复Map
: collections with mapping relations; 两个具有映射关系的集合Queue
: First in first out list(Java 5) FIFO队列
About 17 min