码迷,mamicode.com
首页 > 其他好文 > 详细

遍历Map

时间:2018-01-07 16:03:17      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:span   map   while   iter   nbsp   ext   ring   keyword   body   

方法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

标签:span   map   while   iter   nbsp   ext   ring   keyword   body   

原文地址:https://www.cnblogs.com/prettyGff/p/8227811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!