首页 > 编程语言 > 详细

Java HashMap遍历

时间:2014-04-05 21:52:08      阅读:533      评论:0      收藏:0      [点我收藏+]
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
//HashMap推荐使用这种遍历方法,因为效率相对较高。HashTable也类似
public class DemoList
{
	@SuppressWarnings({ "rawtypes", "unused" })
	public static void main(String[] args)
	{
		Map<String,String> map=new HashMap<String, String>();
		map.put("1", "One");
		map.put("2", "Two");
		map.put("3", "Three");
		map.put("4", "Four");
		map.put("5", "Five");
		map.put("6", "Six");
		Iterator mapite=map.entrySet().iterator();
		while(mapite.hasNext())
		{
			Map.Entry testDemo=(Map.Entry)mapite.next();
			Object key=testDemo.getKey();
			Object value=testDemo.getValue();
			System.out.println(key+"-------"+value);
		}
	}
}

//结果如下。

3-------Three
2-------Two
1-------One
6-------Six
5-------Five
4-------Four


本文转自:http://blog.csdn.net/yanglian20009/article/details/7238722

Java HashMap遍历,布布扣,bubuko.com

Java HashMap遍历

原文:http://blog.csdn.net/laijunpeng/article/details/22984899

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!