Map<String, Object>的循环
Map<String, Object>的循环
Map数据
HashMap<String, Object> map = new HashMap<>();
map.put("name", "张三");
map.put("age", 20);
map.put("sex", "男");
map.put("phone", "13800000000");
map.put("account", "123456789");
- 第一种:使用map.entrySet()进行循环
public static void main(String[] args) {
// 方法一:在日常开发中使用比较多的
for (Map.Entry<String, Object> entry : map.entrySet()) {
String s = "key====>" + entry.getKey() + ",value===>" + entry.getValue();
System.out.println(s);
}
}
- 第二种迭代器方式循环
public static void main(String[] args) {
// 方法二:在开发中我还没有见过使用这个的
Iterator<Map.Entry<String, Object>> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<String, Object> entry = iterator.next();
String s = "key====>" + entry.getKey() + ",value===>" + entry.getValue();
System.out.println(s);
}
}
- 第三种:使用Java8新特性
public static void main(String[] args) {
// 方法三:使用Java8新特性
map.forEach((key, value) -> System.out.println("key====>" + key + ",value===>" + value));
}
本文来自博客园,作者:ElloeStudy,转载请注明原文链接:https://www.cnblogs.com/ElloeStudy/p/16065239.html