gpt4 book ai didi

java - 在 Java 中使用 iter.remove() 时出现 IllegalStateException(来源不明)

转载 作者:行者123 更新时间:2023-12-02 04:37:41 32 4
gpt4 key购买 nike

尝试从以下代码中的 ArrayList 中删除元素时,出现非法状态异常错误。我用谷歌搜索发现,当代码中没有 iter.next() 时,通常会发生此错误,但我很确定我的设置正确。

for (Iterator<String[]> x = PAuditjobslist.iterator(); x.hasNext(); ){

String[] temp = x.next();

if(temp.length > 2){

String PAdate = dateFudger(temp[PAuditDate],f);
int docCounter = 0;

for(String[] y: cancelledjobslist){

String Cndate = y[canJobDate];

if(temp[PAuditName].equals(y[canJobName]) && PAdate.equals(Cndate) &&
documentNameList.get(docCounter).equals(temp[PAuditDocName]) ){

x.remove();


}
docCounter++;
}

}

}

这是我遇到的错误

Exception in thread "main" java.lang.IllegalStateException
at java.util.ArrayList$Itr.remove(Unknown Source)
at csvfilter.main(csvfilter.java:63)

最佳答案

Iterator#remove 的文档中

throws IllegalStateException - if the next method has not yet been called, or the remove method has already been called after the last call to the next method.

所以看起来 x.remove() 在调用 next() 之前被调用了两次。

只需确保在调用 x.remove()break 退出内部循环即可。

关于java - 在 Java 中使用 iter.remove() 时出现 IllegalStateException(来源不明),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23554162/

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