並發修改異常:新增至 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中文網其他相關文章!