반복 중에 ArrayList에서 요소를 제거할 때 "ConcurrentModificationException" 방지
다음과 같이 반복 중에 ArrayList에서 요소를 제거하려고 할 때 예:
for (String str : myArrayList) { if (someCondition) { myArrayList.remove(str); } }
다음과 같은 상황이 발생할 가능성이 높습니다. "ConcurrentModificationException." 이는 반복 중에 ArrayList가 수정되어 빠른 실패 속성을 위반하기 때문에 발생합니다.
해결 방법: Iterator 사용
이 예외를 방지하려면 Iterator를 사용하고 제거() 메서드를 호출합니다.
Iterator<String> iter = myArrayList.iterator(); while (iter.hasNext()) { String str = iter.next(); if (someCondition) iter.remove(); }
Iterator를 사용하면 ArrayList의 수정 사항이 반복은 내부적으로 처리되어 예외가 발생하지 않도록 합니다.
위 내용은 반복 중에 ArrayList에서 제거할 때 ConcurrentModificationException을 방지하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!