gpt4 book ai didi

java - 从 Java 中的列表中减去值

转载 作者:行者123 更新时间:2023-11-30 02:33:21 24 4
gpt4 key购买 nike

这是我的代码:

public void tick {
for (Integer i : list) {
list.add(i-1);
list.remove(i);
System.out.println(list);
}
}

我有一个“x”元素(int 值)的列表。在每个“刻度”上,我想从整个数组中扣除 -1 而不进行任何位置移动。我的方法导致转变。

最佳答案

list.remove() 抛出 ConcurrentModificationException如果您在迭代时删除元素。

所以,您需要使用 list.set() 在迭代列表时设置索引处的值,如下面的代码所示(遵循注释):

for (int i = 0; i < list.size(); i++) {
int val = list.get(i);//get the value
list.set(i, (val-1));//subtract and set the value at the same index
}

关于java - 从 Java 中的列表中减去值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43745657/

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