当前位置 : 主页 > 手机开发 > 其它 >

map 封装 map

来源:互联网 收集:自由互联 发布时间:2021-06-19
public static void main(String[] args) { Map m = new HashMap(); for (int i = 0; i 7; i++) { Map map = new HashMap(); map.put(i, i); m.put(i, map); } Map map = (Map) m.get(0); System.out.println( map.get(0)); }

public static void main(String[] args) {
Map m = new HashMap();

for (int i = 0; i < 7; i++) {
Map map = new HashMap();
map.put(i, i);
m.put(i, map);
}
Map map = (Map) m.get(0);
System.out.println( map.get(0));

}

网友评论