To demonstrate what is the difference between object hash code and object equal, I would like to start with a simple example in Python.
|
|
It’s quite simple, right? I define a new Person class that has two properties age and name. And then I defined a map, to check if a person join the event or not.
So I have a person named John, at first he join, but the next day he change his mind and don’t want to join the event anymore because he got a ton of home need to finish 🤕. So my expectation here is when I check if John joins the event, the result should be False.
Let’s see how it goes!
So on the map, you can see two records with the same values of name and age. The first record is for the time John registered for the event, the second one is the time John withdraw from the event. That is not correct, I expect that there should be only one record in the map representing John.
And lastly, I want to check if John join the event by accessing the map, it doesn’t even know who is John :’)
Haha, but I am a good student, I work very hard at university, these problems can’t trouble me :D. I remember that in a hash map before putting a pair of keys and values in, it will hash the key to getting a number to find the position of the bucket in the map for this key. So every pair have the same hash will go into the same bucket.
So let’s see the hash values of these John objects.
Let’s see how it goes!
Exactly what I expected, despite three John objects all having the same values in their properties, they have different hash values, so they will consider as different objects, and will be put in different buckets on the map.
So what is the solution? Haha 😂 pretty simple, I only need to override the hash function of the Person class, so every Person object with the same values in their properties will have the same hash.
So three John objects with the same values in their properties have the same hash value now. So my first code snippet should work now, haha
After an hour of searching on the internet, I just remember how a hash map works.
The problem here is, how do you know if your pair (key, value) has been already on the list or not? Pretty simple, using __eq__
function to compare objects, we will iterate through every pair in the list and compare it to the new pair, if the new pair haven’t been in the list, we append it to the list. So the next thing we need to do is to override the __eq__
function.
|
|
Everything work now hahaha 🤣🤣🤣 hard work payoff.
References
https://www.geeksforgeeks.org/implementing-our-own-hash-table-with-separate-chaining-in-java/