Java HashMap常用的两种遍历方式

最近项目学习中经常遇到Hash Map的遍历,Hash Map 是键和值一一对应的组合,值不一定是一般数值类型,也可以是map或者tree
这里记录下:
1)由key值遍历:

		Map<String,Integer> data = new HashMap<String,Integer>();
		data.put("Tom",11);
		data.put("Jane",12);
		for(String key:data.keySet()) {
			System.out.println("key:"+key+" Value:"+data.get(key));
		}

2)由entry 遍历:

		for(Entry<String,Integer> entry:data.entrySet()) {
			System.out.println("Key:"+entry.getKey()+" Value:"+entry.getValue());
		}

你可能感兴趣的:(Java HashMap常用的两种遍历方式)