Map的遍历

java的集合类中,我们通常用到。
插入元素和遍历元素成了最普遍的操作之一。
对于List的操作来说,我们基本上都了解,但是Map的操作相对来说稍微的弱一点。(个人情况而定)

Map的遍历

public void showMap(){
	Map map = new HashMap();
	map.put("1","一");
	map.put("2","二");
	map.put("3","三");
	map.put("4","四");
	
	Iterator it = map.entrySet.iterator();
	while(it.hasNext()){
		Map.Entry entry = (Map.Entry)it.next();
		System.out.println("Key: "+entry.getKey()+",Value: "+entry.getValue());
	}
}

你可能感兴趣的:(java)