map的四种遍历方式
Map四种遍历的代码示例(1)数据准备 HashMap<String, String> map = new HashMap<String,String>(); map.put("1","DrDeng1"); map.put("2","DrDeng2"); map.put("3","DrDeng3");遍历方式一:System.out.println("通过map.keyset进行遍历key和value");
原创
2020-05-25 10:57:02 ·
1463 阅读 ·
0 评论