在int
的数组中Int[] array = {1,2,3,4,5,6};
如何使用map添加一些键呢?
喜欢
one => 1
two => 2
Map<String, Integer> aMap = new HashMap<String, Integer>();
答案 0 :(得分:0)
使用put
方法。
Map<String, Integer> aMap = new HashMap<String, Integer>();
aMap.put("one", 1);
aMap.put("two", 2);
对于不可变地图,请考虑使用Google Guava&#39; ImmutableMap
Map<String, Integer> aMap = ImmutableMap.of("one", 1, "two", 2);