I have a very basic question. believe me I have read many books, saw videos but not able to get my answer. Suppose we have HashMap. I have 3(a,b,c) vales that maps to same hash, a and b are same but c is different. If I add only a and b to hastable, how does hashMap knows it is NOT a collision.
Suppose we have Hashmap.... Now I call put(obj1,"Test") and then put(obj2,"Test") obj1 and obj2 map to same key.... Can you tell me what hash map is going to store for these two calls
Will it store the actual objects? If no how will it decide on the second call that it is not collision if obj1 and obj2 are same.
Thanks