How to compute the hashCode() from the object's address? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:35:40Zhttp://stackoverflow.com/feeds/question/128888http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address4How to compute the hashCode() from the object's address?Thomas2008-09-24T18:21:58Z2008-09-25T13:59:46Z
<p>In Java, I have a subclass <code>Vertex</code> of the Java3D class <code>Point3f</code>. Now <code>Point3f</code> computes <code>equals()</code> based on the values of its coordinates, but for my <code>Vertex</code> class I want to be stricter: two vertices are only equal if they are the same object. So far, so good:</p>
<pre><code>class Vertex extends Point3f {
// ...
public boolean equals(Object other) {
return this == other;
}
}
</code></pre>
<p>I know this violates the contract of <code>equals()</code>, but since I'll only compare vertices to other vertices this is not a problem.</p>
<p>Now, to be able to put vertices into a <code>HashMap</code>, the <code>hashCode()</code> method must return results consistent with <code>equals()</code>. It currently does that, but probably bases its return value on the fields of the <code>Point3f</code>, and therefore will give hash collisions for different <code>Vertex</code> objects with the same coordinates.</p>
<p>Therefore I would like to base the <code>hashCode()</code> on the object's address, instead of computing it from the <code>Vertex</code>'s fields. I know that the <code>Object</code> class does this, but I cannot call its <code>hashCode()</code> method because <code>Point3f</code> overrides it.</p>
<p>So, actually my question is twofold:</p>
<ul>
<li>Should I even want such a shallow <code>equals()</code>?</li>
<li>If yes, then, how do I get the object's address to compute the hash code from?</li>
</ul>
<p>Edit: I just thought of something... I could generate a random <code>int</code> value on object creation, and use that for the hash code. Is that a good idea? Why (not)?</p>
http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address/128910#128910-3Answer by Christian P. for How to compute the hashCode() from the object's address?Christian P.2008-09-24T18:27:14Z2008-09-24T18:27:14Z<p>The function hashCode() is inherited from Object and works exactly as you intend (on object level, not coordinate-level). There should be no need to change it.</p>
<p>As for your equals-method, there is no reason to even use it, since you can just do obj1 == obj2 in your code instead of using equals, since it's meant for sorting and similar, where comparing coordinates makes a lot more sense.</p>
http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address/128926#12892610Answer by Alex Miller for How to compute the hashCode() from the object's address?Alex Miller2008-09-24T18:29:26Z2008-09-24T18:29:26Z<p>Either use System.identityHashCode() or use an IdentityHashMap.</p>
http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address/128940#1289401Answer by Bill the Lizard for How to compute the hashCode() from the object's address?Bill the Lizard2008-09-24T18:31:13Z2008-09-24T18:31:13Z<p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#identityHashCode(java.lang.Object)" rel="nofollow">System.identityHashCode()</a> returns the same hash code for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode().</p>
http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address/128982#1289820Answer by Jay R. for How to compute the hashCode() from the object's address?Jay R.2008-09-24T18:38:51Z2008-09-24T18:38:51Z<p>You use a delegate even though this <a href="http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address#128926">answer</a> is probably better.</p>
<pre><code>
class Vertex extends Point3f{
private final Object equalsDelegate = new Object();
public boolean equals(Object vertex){
if(vertex instanceof Vertex){
return this.equalsDelegate.equals(((Vertex)vertex).equalsDelegate);
}
else{
return super.equals(vertex);
}
}
public int hashCode(){
return this.equalsDelegate.hashCode();
}
}
</code></pre>
http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address/129021#1290210Answer by Mike Stone for How to compute the hashCode() from the object's address?Mike Stone2008-09-24T18:44:10Z2008-09-24T18:50:42Z<p>Just FYI, your equals method does NOT violate the equals contract (for the base Object's contract that is)... that is basically the equals method for the base Object method, so if you want identity equals instead of the Vertex equals, that is fine.</p>
<p>As for the hash code, you really don't need to change it, though the accepted answer is a good option and will be a lot more efficient if your hash table contains a lot of vertex keys that have the same values.</p>
<p>The reason you don't need to change it is because it is completely fine that the hash code will return the same value for objects that equals returns false... it is even a valid hash code to just return 0 all the time for EVERY instance. Whether this is efficient for hash tables is completely different issue... you will get a lot more collisions if a lot of your objects have the same hash code (which may be the case if you left hash code alone and had a lot of vertices with the same values).</p>
<p>Please don't accept this as the answer though of course (what you chose is much more practical), I just wanted to give you a little more background info about hash codes and equals ;-)</p>
http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address/129411#1294110Answer by Steve B. for How to compute the hashCode() from the object's address?Steve B.2008-09-24T19:43:44Z2008-09-24T19:43:44Z<p>Why do you want to override hashCode() in the first place? You'd want to do it if you want to work with some other definition of equality. For example</p>
<p>public class A {
int id;</p>
<p>public boolean equals(A other) { return other.id==id}
public int hashCode() {return id;}</p>
<p>}
where you want to be clear that if the id's are the same then the objects are the same, and you override hashcode so that you can't do this:</p>
<p>HashSet hash= new HashSet();
hash.add(new A(1));
hash.add(new A(1));
and get 2 identical(from the point of view of your definition of equality) A's.
The correct behavior would then be that you'd only have 1 object in the hash, the second write would overwrite.</p>
http://stackoverflow.com/questions/128888/how-to-compute-the-hashcode-from-the-objects-address/130389#1303890Answer by Robin for How to compute the hashCode() from the object's address?Robin2008-09-24T22:43:23Z2008-09-25T13:59:46Z<p>Since you are not using equals as a logical comparison, but a physical one (i.e. it is the same object), the only way you will guarantee that the hashcode will return a unique value, is to implement a variation of your own suggestion. Instead of generating a random number, use UUID to generate an actual unique value for each object.</p>
<p>The System.identityHashCode() will work, <strong>most</strong> of the time, but is not guaranteed as the Object.hashCode() method is <strong>not</strong> guaranteed to return a unique value for every object. I have seen the marginal case happen, and it will probably be dependent on the VM implementation, which is not something you will want your code be dependent on.</p>
<p>Excerpt from the javadocs for Object.hashCode():
As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects. (This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.) </p>
<p>The problem this addresses, is the case of having two separate point objects from overwriting each other when inserted into the hashmap because they both have the same hash. Since there is no logical equals, with the accompanying override of hashCode(), the identityHashCode method can actually cause this scenario to occur. Where the logical case would only replace hash entries for the same logical point, using the system based hash can cause it to occur with any two objects, equality (and even class) is no longer a factor.</p>