The whole purpose of using containsKey() is to check whether any given key is already in HashMap or not? If it doesn't contain that key than just add key into that HasMap.
But seems like when we call this method it's parameters are Object type that means, containsKey() checks whether given argument(key) has similar memory address with any other already entered key.
Potential Solution:
One solution could be get a unique data from that object1(oldKey) and check with object2(new key), If they are same than don't use it in HashMap. However this means containsKey has no purpose at all. Am I right?
Sorry I am not ranting, or probably I sound like one. But I would like to know the most efficient way to get over this problem.
will be thankful for any kind of help.