标签:style 插入 print www 使用 for循环 out key put
Map<String, String> map = new HashMap<String, String>();
map.put("key1", "value1");
map.get("key1")
map.remove("key1");
map.clear();
使用for循环 keySet()遍历
for (String key : map.keySet()) { System.out.println(key + " :" + map.get(key)); }
参考自:https://www.jianshu.com/p/27577315af0c
标签:style 插入 print www 使用 for循环 out key put
原文地址:https://www.cnblogs.com/150536FBB/p/12024113.html