Tagged Questions
The hashcode tag has no wiki summary.
183
votes
8answers
12k views
What is the best algorithm for an overridden System.Object.GetHashCode?
In .NET System.Object.GetHashCode method is use in a lot of places throughout the .NET base class libraries. Especially when finding items in a collection fast or to determine equality. Is there a ...
134
votes
7answers
32k views
Why is it important to override GetHashCode when Equals method is overriden in C#?
Given the following class
public class Foo
{
public int FooId { get; set; }
public string FooName { get; set; }
public override bool Equals(object obj)
{
Foo fooItem = obj as ...
110
votes
14answers
103k views
61
votes
9answers
18k views
GetHashCode Guidelines in C#
I read in the Essential C# 3.0 and .NET 3.5 book that:
"GetHashCode()’s returns over the life of a particular object should be
constant (the same value), even if the object’s data changes. In many
...
35
votes
6answers
2k views
Why doesn't String's hashCode() cache 0?
I noticed in the Java 6 source code for String that hashCode only caches values other than 0. The difference in performance is exhibited by the following snippet:
public class Main{
static void ...
31
votes
10answers
15k views
How do you determine equality for two JavaScript objects?
A strict equality operator will tell you if two object types are equal, however, is there any way to tell if two objects are equal, much like the hash code value in Java?
This is similar to this ...
26
votes
8answers
3k views
Why use a prime number in hashCode?
Hey so I'm sorry if this is really obvious but I was just wondering why is that primes are used in a class's hashCode() method? For example, when using Eclipse to generate my hashCode() method there ...
25
votes
10answers
2k views
General advice and guidelines on how to properly override object.GetHashCode()
According to MSDN, a hash function must have the following properties:
If two objects compare as equal, the GetHashCode method for each object must return the same value. However, if two ...
24
votes
2answers
10k views
Java: How to get the unique ID of an object which overrides hashCode()?
When a class in Java doesn't override hashCode(),
printing an instance of this class gives a nice unique number.
The Javadoc of Object says about hashCode():
As much as is reasonably practical, ...
22
votes
4answers
3k views
How does the JVM ensure that System.identityHashCode() will never change?
Typically the default implementation of Object.hashCode() is some function of the allocated address of the object in memory (though this is not mandated by the JLS). Given that the VM shunts objects ...
21
votes
4answers
3k views
apache commons equals/hashcode builder
I'm curious to know, what people here think about using
org.apache.commons.lang.builder EqualsBuilder/HashCodeBuilder
for implementing the equals/hashcode? Would it be a better practice than writing ...
20
votes
6answers
493 views
Should mutable collections override equals and hashCode?
I was just wondering if it was a good idea to override equals and hashCode for mutable collections. This would imply that if I insert such a collection into a HashSet and then modify the collection, ...
20
votes
7answers
13k views
Consistency of hashCode() on a Java string
The hashCode value of a Java String is computed as (String.hashCode()):
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
Are there any circumstances (say JVM version, vendor, etc.) under which the ...
18
votes
4answers
234 views
Why do 2 delegate instances return the same hashcode?
Take the following:
var x = new Action(() => { Console.Write("") ; });
var y = new Action(() => { });
var a = x.GetHashCode();
var b = y.GetHashCode();
Console.WriteLine(a == b);
...
18
votes
8answers
8k views
.NET unique object identifier
Is there any way of getting an unique identifier of an instance?
GetHashCode() is same for 2 references pointing to the same instance. However, 2 different instances can (quite early) get same hash ...
17
votes
8answers
9k views
C#: GetHashCode override of object containing generic array
I have a class that contains the following two properties:
public int Id { get; private set; }
public T[] Values { get; private set; }
I have made it IEquatable<T> and overriden ...
16
votes
5answers
2k views
Python: What's a correct and good way to implement __hash__()?
What's a correct and good way to implement __hash__()?
I am talking about the function that returns a hashcode that is then used to insert objects into hashtables aka dictionaries.
As __hash__() ...
16
votes
9answers
2k views
How to ensure hashCode() is consistent with equals()?
When overriding the equals() function of java.lang.Object, the javadocs suggest that,
"it is generally necessary to override the hashCode method whenever this method is overridden, so as to ...
15
votes
3answers
567 views
Why setting HashTable's length to a Prime Number is a good practice?
I was going through Eric Lippert's latest Blog post for Guidelines and rules for GetHashCode when i hit this para:
We could be even more clever here; just as a List resizes itself when it gets ...
15
votes
1answer
274 views
How does Object.GetHashCode work when the GC moves an object?
If I understand correctly, in .NET the default implementation of Object.GetHashCode() returns a value based on an object's memory address (at least for reference-types). However, the garbage collector ...
14
votes
3answers
186 views
If Java's garbage collector moves objects, what is Object.hashCode and System.identityHashCode?
I've often heard that these methods (Object.hashCode and System.identityHashCode) return the address of the object, or something computed quickly from the address; but I'm also pretty sure the garbage ...
14
votes
8answers
10k views
Is there any kind of hashCode function in javascript?
Basically what I'm trying to do is create an object of unique objects, a set. I had the brilliant idea of just using a JS object with objects for the property names. Such as,
set[obj] = true;
This ...
13
votes
5answers
2k views
What is a sensible prime for hashcode calculation?
Eclipse 3.5 has a very nice feature to generate Java hashCode() functions. It would generate for example (slightly shortened:)
class HashTest {
int i;
int j;
public int hashCode() ...
11
votes
3answers
546 views
Boolean.hashCode()
Now I see how to implement a method hashCode() for the Boolean object:
public int hashCode() {
return value ? 1231 : 1237;
}
And I wonder why it returns a values 1231 or 1237, why not something ...
11
votes
1answer
863 views
Efficient hashCode() implementation
I often auto-generate an class's hashCode() method using IntelliJ IDEA and typically the method takes the form:
result = 31 * result + ...
My question is what is the purpose of multiplying by 31? ...
10
votes
8answers
239 views
Why equals and hashCode were defined in Object?
What's the reasoning behind decision to include these methods in the java.lang.Object? Equality and hashing doesn't make sense for many classes.
It would be more logical to make two interfaces:
...
10
votes
9answers
1k views
How do I calculate a good hash code for a list of strings?
Background:
I have a short list of strings.
The number of strings is not always the same, but are nearly always of the order of a “handful”
In our database will store these strings in a 2nd ...
10
votes
4answers
1k views
Is it possible to combine hash codes for private members to generate a new hash code?
I have an object for which I want to generate a unique hash (override GetHashCode()) but I want to avoid overflows or something unpredictable.
The code should be the result of combining the hash ...
10
votes
4answers
5k views
Java Array HashCode implementation
This is odd. A co-worker asked about the implementation of myArray.hashCode() in java. I thought I knew but then I ran a few tests. Check the code below. The odd think I noticed is that when I ...
9
votes
4answers
123 views
Implementing equals and hashCode for objects with circular references in Java
I have two classes defined such that they both contain references to the other object. They look similar to this (this is simplified; in my real domain model class A contains a list of B and each B ...
9
votes
6answers
1k views
How default .equals and .hashCode will work for my objects?
Say I have my own object
public class MyObj { ... }
It has some attributes and methods. It DOES NOT implement equals, DOES NOT implement hashCode.
Once we call equals and hashCode, what are the ...
9
votes
4answers
454 views
Why might a System.String object not cache its hash code?
A glance at the source code for string.GetHashCode using Reflector reveals the following (for mscorlib.dll version 4.0):
public override unsafe int GetHashCode()
{
fixed (char* str = ((char*) ...
9
votes
8answers
1k views
GetHashCode Extension Method
After reading all the questions and answers on StackOverflow concerning overriding GetHashCode() I wrote the following extension method for easy and convenient overriding of GetHashCode():
public ...
8
votes
5answers
137 views
On integer multiplication, overflow, and information loss
I'm reading through Chapter 3 of Joshua Bloch's Effective Java. In Item 8: Always override hashCode when you override equals, the author uses the following combining step in his hashing function:
...
8
votes
1answer
124 views
Scala: lightweight way to put Arrays in a Set or Map
Since == does not work with Arrays, I cannot effectively create a Set of Arrays (or Map with Array keys). I would rather not take the performance hit of converting my Arrays to a Vector or List or ...
8
votes
4answers
326 views
Efficient hash code for multiset in Java
I have defined a subinterface of java.util.Collection that effectively is a multiset (aka bag). It may not contain null elements, although that's not crucial to my question. The equals contract ...
8
votes
7answers
292 views
Java: Use hashCode() inside of equals() for convenience?
Consider the following test case, is it a bad practice to use the hashCode() method inside of equals as a convenient shortcut?
public class Test
{
public static void main(String[] args){
...
8
votes
2answers
130 views
.Net GetHashcode Bit Shifting Operation
I was looking through some of the .net source yesterday and saw several implementations of GetHashcode with something along the lines of this:
(i1 << 5) + i ^ i2
I understand what the code is ...
8
votes
1answer
566 views
What code is generated for an equals/hashCode method of a case class?
I have some Java code which I'm translating to Scala.
The code consists of some immutable classes which would fit the purpose of a case class in Scala.
But I don't want to introduce bugs, therefore ...
8
votes
1answer
514 views
How can I get checkstyle to skip equals() and hashcode() methods generated by eclipse?
Our project contains several classes that we have equals() and hashCode() methods generated by Eclipse (Right Click -> Source -> Generate hashCode() and equals()).
Example:
@Override
public ...
8
votes
7answers
619 views
How should I define a good hashCode for a circular linked list in Java?
I have set up a circular linked list data structure that represents a word, and each element in the list is a letter from the word. At the bottom of my question are the class definitions of the list ...
8
votes
3answers
853 views
Why are XOR often used in java hashCode() but another bitwise operators are used rarely?
I often see code like
int hashCode(){
return a^b;
}
Why XOR?
8
votes
7answers
893 views
Why GetHashCode is not a property like HashCode in .NET
Why GetHashCode is not a property like HashCode in .NET?
8
votes
9answers
2k views
Implementing `hashCode()` for very simple classes
I have a very simple class with only one field member (e.g. String). Is it OK to implement hashCode() to simply return fieldMember.hashCode()? Or should I manipulate the field's hash code somehow? ...
7
votes
3answers
145 views
Why does a hashtable degenerate into a Linked List when a hashcode() implementation returns a constant value?
// The worst possible legal hash function - never use!
@Override public int hashCode() { return 42; }
It’s legal because it ensures that equal objects have the same hash code. It’s atrocious ...
7
votes
9answers
229 views
Java collection for this use case
Let's say we have a bunch of Car objects.
Each Car has some distinguishing properties e.g. manufacturer, model, year, etc. (these can be used to create distinct hashCodes).
Each car has a List of ...
7
votes
5answers
557 views
How do I create a HashCode in .net (c#) for a string that is safe to store in a database?
To quote from Guidelines and rules for GetHashCode by Eric Lippert:
Rule: Consumers of GetHashCode cannot rely upon it being stable over time or across appdomains
Suppose you have a ...
7
votes
2answers
226 views
Overriding hashCode() - is this good enough?
For a class whose fields are solely primitive, ex.:
class Foo
{
int a;
String b;
boolean c;
long d;
boolean equals(Object o)
{
if (this == o) return true;
if ...
7
votes
7answers
1k views
Why hashCode() can return the same value for different objects in java?
Why it happens the hashCode() method might return the same value for different objects?
A quote from the book I'm reading: "The point is that hashcodes can be the same without necessarily ...
7
votes
4answers
258 views
is it incorrect to define an hashcode of an object as the sum, multiplication, whatever, of all class variables hashcodes?
Let's say I have the following class:
class ABC {
private int myInt = 1;
private double myDouble = 2;
private String myString = "123";
private SomeRandomClass1 myRandomClass1 = new ...