通过 new ArrayList() List 名称 = new ArrayList();EG: List stringList = new ArrayList();// 这种方法就是用add来添加 .add(类型的数据)// 拿到方法
通过 new ArrayList<>()
List <类型> 名称 = new ArrayList<>();EG: List stringList = new ArrayList<>();// 这种方法就是用add来添加 .add(类型的数据)// 拿到方法 .get(index) index 是索引// 删除方法 .remove(index) index 是索引// 按照索引删除 .remove(Object o) o 是对象
通过Arrays.asList()
这种方法构造出的List是固定长度的,如果调用add方法增加新的元素,会报异常,List是由Array转换而来,而Array是不能动态增加长度的,适合于构造静态不变List.
List stringList = Arrays.asList("1", "2", "3");
list可以动态添加元素,比较友好,适合于构造动态List
List stringList = CollectionUtil.newArrayList("1", "2", "3");hutool 依赖 cn.hutool hutool-all 4.5.7 junit 依赖 junit junit 4.12 test
来源地址:https://blog.csdn.net/weixin_44536462/article/details/128478027
--结束END--
本文标题: Java创建List 的三种方法
本文链接: https://lsjlt.com/news/414018.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0