并发修改异常:添加到 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中文网其他相关文章!