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

循环Map方法

时间:2015-07-28 14:21:05      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:

public static void main(String[] args) {
Map<String, String> map = new HashMap<String, String>();
map.put("1", "张三");
map.put("2", "李四");
map.put("3", "王五");
/*方法一 :迭代程序*/
System.out.println("方法一:");
Iterator iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<String, String> entry = (Entry<String, String>) iterator.next();
System.out.println("key:" + entry.getKey() + " value" + entry.getValue());
}
/*方法二*/
System.out.println("方法二:");
for (Map.Entry<String, String> m : map.entrySet()) {
System.out.println("key:" + m.getKey() + " value" + m.getValue());
}
}

循环Map方法

标签:

原文地址:http://www.cnblogs.com/Junze/p/4682566.html

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