My first instinct is to say each key is an object, and has a hash code, which is what is used to determine if a duplicate is being inserted. However, I can't find anything to back that up for sure. Can someone provide a link that says that, or provide the real answer here? Thanks!
|
|
The http://java.sun.com/javase/6/docs/api/java/util/Map.html#containsKey(java.lang.Object) However, it's up to the |
||
|
|
|
Read the question wrong, but the person's answer above is correct and my link provides the answer as to how it is determined (the equals method). Look at the contains and get methods in the link. How a map inserts: There cannot be a duplicate key in a Map. It will replace the old value with the new value if you find a duplicate key. Here is a link to the Map Interface. In addition, if you look at the put(K key, V value) method, it also explains how a map works. Hope that helps. |
||
|
|
|
|
I'm assuming you're referring to |
||
|
|
|
|
It uses the equals() method on the key. The hashCode() method just helps efficiently store the keys for the map. |
||
|
|
|
|
Careful on an edge case here. Null keys are not always duplicates. In fact, null keys turn out to be out to cause much frustration inbetween Map implementations (see my post on Consistency). For example null keys are OK in HashMaps, but not in a TreeMap that uses natural ordering, or ConccurentHashMap where null keys are forbidden. The problem here is that they throw uncaught exceptions on many of their methods if you use a null key and that introduces scary run-time bugs when you switch implementations during refactoring. |
||
|
|
