List(有序)
由来:
List继承了Collection.简单点说就是有序的Collection序列.
特点:
元素对象存储取出均有序,对象可重复.有索引.
特有方法简介:
增加add(int,obj)
删除 remove(index)
改:set(index,obj)
获取 get(index) iterator() listIterator()
subList(fromIndex,toIndex)
常用子类:
|--- Arraylist 底部结构为数组,线程不安全查询快,增删慢.
|----Vector 底部结构为数组,线程安全,效率低.
|----LinkedList 底部结构为链表结构,不安全,增删快,查询慢 |
|