• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Devaka Cooray
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • Paul Clapham
Sheriffs:
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
Bartenders:

Hashtable key object should have its "equals" method

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

Please tell me why an object which is to be used as a key in hashtable should have equals method overridden..
 
Marshal
Posts: 81617
593
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
. . . and its hashCode method.
The hashCode method is used to decide which "bucket" the key-value pair is put into, and the equals() method is used to disambiguate pairs, in case there is more than one pair in a particular "bucket".If the JavaRanchUser class has an overridden equals() method [and hashCode()], that will print out NUISANCE. If the equals() method is not, however, overridden, the Map will not recognise the two keys as identical, and will return something else, and you will get a printout of "null". If the hashCode method is not overridden, the Map will not even find the correct "bucket".
 
She'll be back. I'm just gonna wait here. With this tiny ad:
Paul Wheaton's 16th Kickstarter: Gardening playing cards for gardeners and homesteaders
https://coderanch.com/t/889615/Paul-Wheaton-Kickstarter-Gardening-playing
reply
    Bookmark Topic Watch Topic
  • New Topic