프로그래밍 언어/JAVA

자바 HashMap을 통해 반복하는 방법

Rateye 2021. 11. 26. 10:31
728x90
반응형
질문 : HashMap을 통해 반복

HashMap 의 항목을 반복하는 가장 좋은 방법은 무엇입니까?

답변

다음과 같이entrySet() 반복합니다.

public static void printMap(Map mp) {
    Iterator it = mp.entrySet().iterator();
    while (it.hasNext()) {
        Map.Entry pair = (Map.Entry)it.next();
        System.out.println(pair.getKey() + " = " + pair.getValue());
        it.remove(); // avoids a ConcurrentModificationException
    }
}

Map 에 대해 자세히 알아보십시오.

출처 : https://stackoverflow.com/questions/1066589/iterate-through-a-hashmap
728x90
반응형