1:添加功能
boolean add(Object obj):添加一个元素
void add(int index,Object element):在指定位置添加元素
boolean addAll(Collection c):添加一个集合的元素
2:删除功能
void clear():移除所有元素
boolean remove(Object o):移除一个元素
Object remove(int index):根据索引删除元素,返回被删除的元素
boolean removeAll(Collection c):移除此 collection 中那些也包含在指定 collection 中的所有元素。如果此 collection 由于调用而发生更改,则返回 true
3:修改功能
Object set(int index,Object element):根据索引修改元素,返回被修饰的元素
4:获取功能
Object get(int index):获取指定位置的元素
增强for
ListIterator listIterator():List集合特有的迭代器
Iterator<E> iterator() |