本帖最后由 bhxiaobo 于 2012-10-25 16:26 编辑
类关系示意图
Iterable(接口)
│
└--Collection (接口)
├-List(接口)
│ ├-LinkedList 不同步 (构造同步:List list = Collections.synchronizedList(new LinkedList(...));)
│ ├-ArrayList 不同步
│ └-Vector 同步
│ └--Stack 同步
└-Set
├--EnumSet
├--HashSet --LinkedHashSet
└--TreeSet
Map
├--Hashtable
├--HashMap --LinkedHashMap
└--WeakHashMap
通过关系图可以得知List集合和Set集合适用于增强for,map不可以
|