Peter when you add a key-value to a Map, the key-value is placed in a bucket based on the hash code. If after that you modify the key in such a way that it changes the hash code of the key, then your map gets sort of corrupt. The key-value is still in the Map but you will not be able to find it as its still in the old bucket in which it went when you added it...
d1.name = "magnolia"; //Are we modifying the actual key in the map??? the key referenced by d1???
System.out.println(m.get(d1));
In this case you are modifying object d1 and when you invoke m.get (d1), Hashmap invoke hash method on d1 object and no bucket are found in HashMap. Then return null.
d1 not referts to the actual key in the map. When you pass d1 to get method, hashmap invoke your hascode() method at d1 and if bucket is found at hash table, then invoke your d1 equals method to find a match object (based on equals mehtod not the reference).
Hi guys, i'm completely stuck trying to understand this:
if i change code line 65 above from:
To:
I get:
d1= Dog key
The equals method never got executed because i put but never got executed? how come? and why i'm not getting null instead of Dog key?
Thanks a lot.
I miss the old days when I would think up a sinister scheme for world domination and you would show a little emotional support. So just look at this tiny ad: