HashSet problem -- equals and hashCode with contains working differently than I'd expect - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T10:49:42Z http://stackoverflow.com/feeds/question/230585 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/230585/hashset-problem-equals-and-hashcode-with-contains-working-differently-than-id 3 HashSet problem -- equals and hashCode with contains working differently than I'd expect jsight 2008-10-23T17:16:39Z 2008-10-23T22:18:48Z <p>I have the following code:</p> <pre><code>class IncidentTag: def __init__(self,tag): self.tag = tag def equals(self,obj): return self.tag.equals(obj.tag) def hashCode(self): return self.tag.hashCode() from java.lang import String from java.util import HashMap from java.util import HashSet tag1 = IncidentTag(String("email")) tag1copy = IncidentTag(String("email")) tag2 = IncidentTag(String("notemail")) print tag1.equals(tag1copy) print tag2.equals(tag2) print "Now with HashSet:" hSet = HashSet() hSet.add(tag1) hSet.add(tag2) print hSet.contains(tag1) print hSet.contains(tag2) print hSet.contains(tag1copy) </code></pre> <p>The output is: 1 1 Now with HashSet: 1 1 0</p> <p>However, I would have expected the last line to be true (1) as well. Is there something obvious that I am missing.</p> <p>(yes, I know that my equals method and hashcode methods do not take some issues into account... they are deliberately simple, but do let me know if the issues there are causing this problem)</p> http://stackoverflow.com/questions/230585/hashset-problem-equals-and-hashcode-with-contains-working-differently-than-id/230656#230656 1 Answer by Dave Costa for HashSet problem -- equals and hashCode with contains working differently than I'd expect Dave Costa 2008-10-23T17:33:01Z 2008-10-23T17:33:01Z <p>I wrote equivalent code in Java and it does produce true for all three contains() calls. So I think this must be an oddity in Jython. Maybe the underlying Java objects are not exactly what you see them as in Python.</p> http://stackoverflow.com/questions/230585/hashset-problem-equals-and-hashcode-with-contains-working-differently-than-id/230812#230812 9 Answer by dmeister for HashSet problem -- equals and hashCode with contains working differently than I'd expect dmeister 2008-10-23T18:16:54Z 2008-10-23T18:16:54Z <p>You shouldn't implemented the Java-Style equals and hashCode method, but instead the Python equivaltents <code>__eq__</code> and <code>__hash__</code>. Adding</p> <pre><code>def __hash__(self): return self.hashCode() def __eq__(self, o): return self.equals(o) </code></pre> <p>helps. These python methods are - as far as I know - dynamically bound to hashCode and equals() by Jython. This ensures that you can put Python classes into Java's collections.</p> <p>Now the code prints five "1".</p> http://stackoverflow.com/questions/230585/hashset-problem-equals-and-hashcode-with-contains-working-differently-than-id/231762#231762 0 Answer by Chris Kessel for HashSet problem -- equals and hashCode with contains working differently than I'd expect Chris Kessel 2008-10-23T22:18:48Z 2008-10-23T22:18:48Z <p>I don't know Python, but it sure looks like the underlying Java object's equals() and hashcode() aren't honoring the required contract.</p> <ul> <li>Two objects if equals() must return the same hashcode(). </li> </ul> <p>It looks like that is violated. HashSets are first going to use the hashcode in the lookup to get the list the matching object would be in, then go through the list to find the one that's equal. If your hashcode isn't honoring the contract and they're returning different hashcodes, then it won't find it in the hashset even if they were equals() comparable.</p> <p>The default Java Object.hashcode() isn't going to return the same hashcode for 2 objects. You've got to override it.</p>