> Java > java지도 시간 > For-Each 루프 중에 ArrayList를 수정하면 ConcurrentModificationException이 발생하는 이유는 무엇입니까?

For-Each 루프 중에 ArrayList를 수정하면 ConcurrentModificationException이 발생하는 이유는 무엇입니까?

Barbara Streisand
풀어 주다: 2024-12-13 08:06:11
원래의
924명이 탐색했습니다.

Why Does Modifying an ArrayList During a For-Each Loop Cause a ConcurrentModificationException?

ArrayList에 대한 ConcurrentModificationException

다음 코드를 고려하세요.

private String toString(List<DrugStrength> aDrugStrengthList) {
    StringBuilder str = new StringBuilder();
        for (DrugStrength aDrugStrength : aDrugStrengthList) {
            if (!aDrugStrength.isValidDrugDescription()) {
                aDrugStrengthList.remove(aDrugStrength);
            }
        }
        str.append(aDrugStrengthList);
        if (str.indexOf("]") != -1) {
            str.insert(str.lastIndexOf("]"), "\n          " );
        }
    return str.toString();
}
로그인 후 복사

이 코드가 실행되면 ConcurrentModificationException이 발생합니다. 이 예외는 foreach 루프를 사용하여 반복하는 동안 ArrayList를 수정하는 것이 안전하지 않기 때문에 발생합니다.

이 문제를 해결하려면 foreach 루프를 반복기 루프로 바꾸세요.

for (Iterator<DrugStrength> it = aDrugStrengthList.iterator(); it.hasNext(); ) {
    DrugStrength aDrugStrength = it.next();
    if (!aDrugStrength.isValidDrugDescription()) {
        it.remove();
    }
}
로그인 후 복사

An iterator는 반복하는 동안 ArrayList에서 요소를 제거하는 안전한 방법을 제공합니다. 목록의 현재 위치를 추적하는 커서를 유지 관리하여 요소 제거가 반복 프로세스에 영향을 미치지 않도록 합니다.

위 내용은 For-Each 루프 중에 ArrayList를 수정하면 ConcurrentModificationException이 발생하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿