中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java靜態map初始化的方法是什么

小億
169
2023-10-12 17:06:13
欄目: 編程語言

在Java中,靜態Map可以通過靜態代碼塊或靜態方法進行初始化。

  1. 使用靜態代碼塊:
public class MyClass {
private static Map<Integer, String> map;
static {
map = new HashMap<>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");
}
}
  1. 使用靜態方法:
public class MyClass {
private static Map<Integer, String> map = initMap();
private static Map<Integer, String> initMap() {
Map<Integer, String> map = new HashMap<>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");
return map;
}
}

0
惠州市| 吉木乃县| 于都县| 德兴市| 新宁县| 松阳县| 伊春市| 城口县| 东平县| 邯郸县| 盐亭县| 唐海县| 康定县| 介休市| 高青县| 自贡市| 滦平县| 乌拉特前旗| 寿阳县| 和龙市| 永顺县| 郧西县| 岳阳县| 万安县| 合肥市| 太谷县| 临漳县| 姚安县| 宣汉县| 新泰市| 保德县| 喜德县| 兰西县| 庆城县| 焦作市| 广灵县| 汝城县| 和平区| 当阳市| 新巴尔虎左旗| 宁蒗|