|---List(接口)
特点: 有序,元素可重复,有角标
|---ArrayList
1.2出现,线程非同步(提高效),数组实现
特点: 查找快,增删慢.
|---LinkeList
1.2出现,线程非同步.双向链表
特点: 查找慢,增删快
|---Vector
1.0出现,线程同步,数组实现(100%),性能低
1.2被ArrayList.
特有的取出元素方式: Enumeration
hasMoreElements
nextElement
方法名太长,建议使用  Iterator
hasNext
next