美文网首页
ArrayList常用的方法

ArrayList常用的方法

作者: 枕上青丝 | 来源:发表于2020-01-06 09:42 被阅读0次

public bolean add(E e):向集合中添加元素,参数的类型和泛型一致

public E get(int index):从集合中获取元素,参数是索引编码,返回值是对应位置的元素

public E remove(int index):从集合中删除元素,参数是索引编号,返回值就是被删除的元素

public int size():获取集合的尺寸长度,返回值是集合中包含的元素个数

list.fori回车生成for循环

for (int i =0; i < list.size(); i++) {

}

相关文章

网友评论

      本文标题:ArrayList常用的方法

      本文链接:https://www.haomeiwen.com/subject/pzbsuctx.html