/*
* 获取元素:
* public E get(int index):返回指定索引处的元素
* 集合长度:
* public int size():返回集合中的元素的个数
* 删除元素:
* public boolean remove(object o):删除指定元素,返回是否删除成功
* public E remove(int index):删除指定索引出的元素,返回被删除的元素,
*修改元素:
* public E set(int index,E element):修改指定索引出的元素,返回被修改的元素
*/
public class ArrayListDemo02 {
public static void main(String[] args) {
// 创建集合对象:
ArrayList<String>array = new ArrayList<String>();