list继承了Collection接口,有Collection接口的全部方法
list集合中的元素:有序可重复
常用方法:void add(int index,Object Element)根据下标添加元素
int idexOf(Object o) 查询指定元素的下标
int lastIndexOf(Object o)
Object remove(int index) 移除指定下标的元素
重要方法:set(int index,Object obj) 将集合中指定索引位置的对象修改为指定对象
get(int index) 获得指定索引位置的元素
原文:https://www.cnblogs.com/itswell/p/14467068.html