我正在对Map
s 进行研究,我发现如果我故意添加两次相同的键,那么 Map 的大小保持不变。这背后的技术原因是什么?
Map map=new HashMap();//HashMap key random order.
map.put("Amit","Java");
map.put("Amit","Java");
检索代码...
System.out.println("There are "+map.size()+" elements in the map.");
System.out.println("Content of Map are...");
Set s=map.entrySet();
Iterator itr=s.iterator();
while(itr.hasNext())
{
Map.Entry m=(Map.Entry)itr.next();
System.out.println(m.getKey()+"\t"+m.getValue()+"\t"+ m.hashCode());
}
我得到的结果:
There are 1 elements in the map.
Content of Map are...
Amit Java 3943477