首页 > Java > java教程 > 添加到 ArrayList 时如何避免 ConcurrentModificationException?

添加到 ArrayList 时如何避免 ConcurrentModificationException?

Patricia Arquette
发布: 2024-11-29 17:41:11
原创
159 人浏览过

How to Avoid ConcurrentModificationException When Adding to an ArrayList?

并发修改异常:添加到 ArrayList

当您在迭代集合时尝试修改集合时,会引发 ConcurrentModificationException。当您在使用迭代器遍历集合时通过添加或删除元素来修改集合时,会发生此错误。

异常原因

在提供的代码片段中:

for (Iterator<Element> it = mElements.iterator(); it.hasNext();){
    Element element = it.next();

    // Code to check and add new elements
}
登录后复制

在循环中,代码尝试将新元素添加到 mElements ArrayList,同时使用一个迭代器。这会触发 ConcurrentModificationException,因为集合在迭代过程中被修改。

解决方案 1:使用临时列表

要解决此问题,可以使用临时列表来存储需要添加到 ArrayList 的新元素。完成迭代后,您可以将临时列表中的元素添加到 ArrayList。

// Create a new list to store any new elements that need to be added
List<Element> thingsToBeAdded = new ArrayList<>();

// Iterate over the mElements list
for (Iterator<Element> it = mElements.iterator(); it.hasNext();) {
    Element element = it.next();

    // Code to check and mark elements for addition (e.g., set cFlag)

    if (element.cFlag) {
        // Add the new element to the temporary list
        thingsToBeAdded.add(new Element("crack", getResources(), (int) touchX, (int) touchY));
        element.cFlag = false;
    }
}

// Add the new elements to the mElements list after finishing the iteration
mElements.addAll(thingsToBeAdded);
登录后复制

解决方案 2:使用增强的 For-Each 循环

另一种方法是使用增强的 for-each 循环,它提供了一种更安全的方法来迭代集合。增强的 for-each 循环使用间接抽象来确保集合在迭代期间不会被修改。

for (Element element : mElements) {
    // Code to check and modify elements (e.g., set cFlag)
}
登录后复制

在这种情况下,您需要更新在迭代后单独添加新元素的代码。

以上是添加到 ArrayList 时如何避免 ConcurrentModificationException?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板