java静态map初始化的方法是什么

38次阅读
没有评论

共计 342 个字符,预计需要花费 1 分钟才能阅读完成。

在 Java 中,静态 Map 可以通过静态代码块或静态方法进行初始化。

  1. 使用静态代码块:
public class MyClass {
private static Map map;
static {map = new HashMap();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");
}
}
  1. 使用静态方法:
public class MyClass {private static Map map = initMap();
private static Map initMap() {Map map = new HashMap();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");
return map;
}
}

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-16发表,共计342字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)