Map 的一点分析:在java.util.Map加入了一样的key,则这个key值的value会覆盖掉原来的value

public class Test {

	public static void main(String[] args) {
		Map<Integer,String> map=new HashMap<Integer,String>();
		map.put(1, "one");
		map.put(2, "two");
		map.put(1, "three");
		Set<Integer> set=map.keySet();
		for(Integer i:set){
			System.out.println(map.get(i));
		}
		/*
		 * 输出结果为:
		 * two
		 * three
		 * 说明Map如果加入了一样的key,则这个key值的value会覆盖掉原来的value
		 */
	}
}

你可能感兴趣的:(Map 的一点分析:在java.util.Map加入了一样的key,则这个key值的value会覆盖掉原来的value)