遍历Map

Posted prettygff

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历Map相关的知识,希望对你有一定的参考价值。

方法1:

for (Map.Entry<String, Student> entry : stuMap.entrySet()) {  

         stuStr = entry.getKey();   

         stu = entry.getValue();  

     }  

方法2:

 Iterator<Map.Entry<String,Student>> it = stuMap.entrySet().iterator();   

        while (it.hasNext()) {  

         Map.Entry<String,Student> entry = it.next();  

         stuStr = entry.getKey();   

         stu = entry.getValue();  

  }  

方法3:

for (String stuKey : stuMap.keySet()) {  

          stuStr = stuKey;   

          stu = stuMap.get(stuKey);  

     }  

以上是关于遍历Map的主要内容,如果未能解决你的问题,请参考以下文章

Thymeleaf遍历Map

Groovymap 集合 ( map 集合遍历 | 使用 map 集合的 each 方法遍历 map 集合 | 代码示例 )

freemarker 遍历map 对象

java中map的常用遍历方法都有哪些?

js遍历map(js遍历map对象)

Java中怎么遍历map中value值