동시 수정 예외: ArrayList에 추가
ConcurrentModificationException은 컬렉션을 반복하는 동안 컬렉션을 수정하려고 하면 발생합니다. 이 오류는 Iterator를 사용하여 컬렉션을 순회하는 동안 요소를 추가하거나 제거하여 컬렉션을 수정할 때 발생합니다.
예외 원인
제공된 코드 조각에서:
for (Iterator<Element> it = mElements.iterator(); it.hasNext();){ Element element = it.next(); // Code to check and add new elements }
루프 내에서 코드는 mElements ArrayList에 새 요소를 추가하려고 시도하는 동안 Iterator를 사용하여 반복합니다. 반복 중에 컬렉션이 수정되기 때문에 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!