成员方法【E代表元素】
public boolean remove(Object o)删除指定的元素,返回删除是否成功public E remove(int index)删除指定索引处的元素,返回被删除的元素public E set(int index,E element)修改指定索引处的元素,返回被修改的元素public E get(int index)返回指定索引处的元素public int size()返回集合中的元素的个数【类似数组的length】
import java.util.ArrayList;
class Test {
public static void main(String[] args) {
//创建集合 ,创建一个String类型的集合,
ArrayList<String> array = new ArrayList<String>();