반응형 주식/기타1 자바 static Map 사용과 초기화 출처사이트 : https://trudger.tistory.com/m/entry/static-map-%EC%82%AC%EC%9A%A9-%EA%B4%80%EB%A0%A8static-field-initialzation 맵핑정보를 static map 에 선언해 놓고 쓰고 싶다. 우선 static field를 선언했다. public class Test{ static private final Map mappingFileds = new HashMap(); } 초기화를 어떻게 할까?? 구글링 하니 몇가지 방법이 나왔다. 1. static initializer block private static final Map myMap; static { Map aMap = ....; aMap.put(1, "one"); aMap.p.. 2022. 2. 17. 이전 1 다음 반응형