본문 바로가기
자바

정적지도를 어떻게 초기화 할 수 있습니까?

by º기록 2021. 4. 11.
반응형

Java에서 정적 <코드> 맵 을 어떻게 초기화하겠습니까?

방법 1 : 정적 초기화 자
Method two: instance initialiser (anonymous subclass) or 다른 방법은 무엇입니까?

각각의 장단점은 무엇입니까?

다음은 두 가지 방법을 보여주는 예제입니다.

import java.util.HashMap;
import java.util.Map;

public class Test {
    private static final Map<Integer, String> myMap = new HashMap<>();
    static {
        myMap.put(1, "one");
        myMap.put(2, "two");
    }

    private static final Map<Integer, String> myMap2 = new HashMap<>(){
        {
            put(1, "one");
            put(2, "two");
        }
    };
}

 

해결 방법

 

인스턴스 초기화자는이 경우에 단호한 설탕입니다.나는 왜 초기화하기 위해 여분의 익명의 클래스가 필요한 이유를 알지 못합니다.생성되는 클래스가 최종 일 경우 작동하지 않습니다.

정적 초기화자를 사용하여 불변의지도를 만들 수 있습니다.

public class Test {
    private static final Map<Integer, String> myMap;
    static {
        Map<Integer, String> aMap = ....;
        aMap.put(1, "one");
        aMap.put(2, "two");
        myMap = Collections.unmodifiableMap(aMap);
    }
}

 

참조 페이지 https://stackoverflow.com/questions/507602

 

 

반응형

댓글