Map<String, Object>的循环

2022/3/28 6:24:31

本文主要是介绍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);
  }
}

image-20220327213402224

  • 第二种迭代器方式循环
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);
  }
}

image-20220327213525987

  • 第三种:使用Java8新特性
public static void main(String[] args) {
  // 方法三:使用Java8新特性
  map.forEach((key, value) -> System.out.println("key====>" + key + ",value===>" + value));
}


这篇关于Map<String, Object>的循环的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程