3.集合
collection
------List 有序可重复
--------------ArrayList ArrayList底层维护的是一个Object类型的数组,查询快,增删慢
--------------LinkedList
--------------Vector
------set 无序不可重复
collection接口的方法:
add
addAll
clear
remove
removeAll
retainAll
size
toArray
equals
contains
containsAll
isEmpty
list中的特有方法:
添加:
add(int index, E element); 在指定位置上放入元素
addAll(int index, Collection c); 在指定位置上添加一个集合
获取:
get(int index); 获取指定位置的元素
indexOf(Object o); 找出指定元素在集合中的位置
lastIndexOf(Object o); 找出指定元素在集合中最后一次出现的位置
subList(int fromIndex, int toIndex); 获取从fromIndex位置开始到toIndex位 置结束的子List集合
修改:
set(int index, E Element); 重新设置在下标为index位置上的元素
set中特有方法:
无特殊方法
网友评论