gpt4 book ai didi

java - 将多个项目添加到 Java 中已初始化的数组列表

转载 作者:IT老高 更新时间:2023-10-28 13:53:09 29 4
gpt4 key购买 nike

我的 arraylist 可能会根据用户设置以不同方式填充,因此我已将其初始化为

ArrayList<Integer> arList = new ArrayList<Integer>();

如何在不使用 arList.add(55); 的情况下添加数百个整数?

最佳答案

如果您有另一个列表,其中包含您想要添加的所有项目,您可以执行 arList.addAll(otherList)。或者,如果您总是将相同的元素添加到列表中,您可以创建一个新列表,该列表已初始化为包含所有值并使用 addAll() 方法,类似于

Integer[] otherList = new Integer[] {1, 2, 3, 4, 5};
arList.addAll(Arrays.asList(otherList));

或者,如果您不想创建不必要的数组:

arList.addAll(Arrays.asList(1, 2, 3, 4, 5));

否则,您将不得不使用某种循环将值单独添加到列表中。

关于java - 将多个项目添加到 Java 中已初始化的数组列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15213974/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com