gpt4 book ai didi

java - 由 : java. util.ConcurrentModificationException 引起

转载 作者:行者123 更新时间:2023-12-02 03:56:15 27 4
gpt4 key购买 nike

我不明白为什么会发生这种情况。我对其他问题做了一些研究,发现使用 for 循环时无法修改集合。但是,我正在使用迭代器,为什么它不起作用?

int counter = 0;
int otherCounter = 0;
ArrayList<Character> chars = new ArrayList<Character>();
Iterator<Character> i = chars.iterator();
for (char s : e.getMessage().toCharArray()) {
chars.add(s);
}
while (i.hasNext()) {
char s = i.next();
if (chars.get(otherCounter + 1) == s) {
counter++;
} else {
counter = 0;
}
if (counter >= 2) {
i.remove();
}
otherCounter++;
}

由于某种原因,我在这条线上收到错误:char s = i.next();

最佳答案

您将在创建迭代器后添加到集合中。
这会引发该异常。

完成修改集合后,您需要创建迭代器。

关于java - 由 : java. util.ConcurrentModificationException 引起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35421886/

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