//创建集合对象
ArrayList<String> array = new ArrayList<String>();
1添加元素
public boolean add(E e):添加元素
//添加元素
array.add("hello");
array.add("world");
public void add(int index,E element):在指定的索引处添加一个元素
//add(int index,E element):在指定的索引处添加一个元素
array.add(1, "android");
2. 获取元素
public E get(int index):返回指定索引处的元素
//public E get(int index):返回指定索引处的元素
System.out.println("get:"+array.get(0));
System.out.println("get:"+array.get(1));
3 集合长度
public int size():返回集合中的元素的个数
//public int size():返回集合中的元素的个数
System.out.println("size:"+array.size());
4 删除元素
public boolean remove(Object o):删除指定的元素,返回删除是否成功
//public boolean remove(Object o):删除指定的元素,返回删除是否成功
System.out.println("remove:"+array.remove("world"));
System.out.println("remove:"+array.remove("world"));
public E remove(int index):删除指定索引处的元素,返回被删除的元素
//public E remove(int index):删除指定索引处的元素,返回被删除的元素
System.out.println("remove:"+array.remove(0));
5 修改元素
public E set(int index,E element):修改指定索引处的元素,返回被修改的元素
//public E set(int index,E element):修改指定索引处的元素,返回被修改的元素
System.out.println("set:"+array.set(0));
|
|