Map用来当做容器时,重复赋值,会将以前的值给覆盖掉。
Map用来当做容器时,重复赋值,会将以前的值给覆盖掉。例如:Map map = new HashMap();map.put(0, false); map.put(0, true);此时map.get(0) 的值就为"true"
·
Map用来当做容器时,重复赋值,会将以前的值给覆盖掉。例如:
Map<Integer, Boolean> map = new HashMap<Integer, Boolean>();
map.put(0, false);
map.put(0, true);
此时map.get(0) 的值就为"true"
Map<Integer, Boolean> map = new HashMap<Integer, Boolean>();
map.put(0, false);
map.put(0, true);
此时map.get(0) 的值就为"true"
更多推荐
已为社区贡献1条内容
所有评论(0)