Pet*_*hev 13
将初始化代码放在static块中.例:
private static Map<Integer, Integer> yourMap;
static {
yourMap = new HashMap<Integer, Integer>();
callTheStaticMethod();
}
public static void callTheStaticMethod() {
...
}
Run Code Online (Sandbox Code Playgroud)