vote up 25 vote down star
32

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 standard algorithm/ best practise on how to implement the GetHashCode override for my custom classes so I don't degrate performance?

flag

52% accept rate

4 Answers

vote up 44 vote down check

I usually go with something like the implementation given in Josh Bloch's fabulous Effective Java. It's fast and creates a pretty good hash which is unlikely to cause collisions. Pick two different prime numbers, e.g. 17 and 23, and do:

public int GetHashCode()
{
    int hash = 17;
    // Suitable nullity checks etc, of course :)
    hash = hash * 23 + field1.GetHashCode();
    hash = hash * 23 + field2.GetHashCode();
    hash = hash * 23 + field3.GetHashCode();
    return hash;
}

This is better than the common practice of XORing hashcodes for two main reasons. Suppose we have a type with two int fields:

XorHash(x, x) == XorHash(y, y) == 0 for all x, y
XorHash(x, y) == XorHash(y, x) for all x, y

Btw, the earlier algorithm is the one currently used by the C# compiler for anonymous types :)

link|flag
The algorithm described in the book you mention is infact a little more detailed it especailly describes what to do for different data types of the fields. E.g.: for fields of type long use (int)(field ^ f >>> 32) instead of simply calling GetHashcode. Is long.GetHashCodes implemented that way ? – bitbonk Nov 4 '08 at 21:44
Yup, Int64.GetHashCode does exactly that. In Java that would require boxing, of course. That reminds me - time to add a link to the book... – Jon Skeet Nov 4 '08 at 21:51
vote up 3 vote down

In most cases where Equals() compares multiple fields it doesn't really matter if your GetHash() hashes on one field or on many. You just have to make sure that calculating the hash is really cheap (No allocations, please) and fast (No heavy computations and certainly no database connections) and provides a good distribution.

The heavy lifting should be part of the Equals() method; the hash should be a very cheap operation to enable calling Equals() on as few items as possible.

And one final tip: Don't rely on GetHashCode() being stable over multiple aplication runs. Many .Net types don't guarantee their hash codes to stay the same after a restart, so you should only use the value of GetHashCode() for in memory data structures.

link|flag
vote up 3 vote down

I have a Hashing class in Helper library that I use it for this purpose.

	/// <summary>
	/// This is a simple hashing function from Robert Sedgwicks Hashing in C book.
	/// Also, some simple optimizations to the algorithm in order to speed up
	/// its hashing process have been added. from: www.partow.net
	/// </summary>
	/// <param name="input">array of objects, parameters combination that you need
	/// to get a unique hash code for them</param>
	/// <returns>Hash code</returns>
	public static int RSHash(params object[] input)
	{
		const int b = 378551;
		int a = 63689;
		int hash = 0;

		// I have added the unchecked keyword to make sure 
		// not get an overflow exception.
		// It can be enhanced later by catching the OverflowException.

		unchecked
		{
			for (int i = 0; i < input.Length; i++)
			{
				if (input[i] != null)
				{
					hash = hash * a + input[i].GetHashCode();
					a = a * b;
				}
			}
		}

		return hash;
	}

Then, simply you can use it as:

public override int GetHashCode()
{
    return Hashing.RSHash(_field1, _field2, _field3);
}

I didn't assess its performance, so any feedback is welcomed.

link|flag
Looks cool, tnx :-) – Yacoder Jun 8 at 14:06
vote up 2 vote down

Most of my work is done with database connectivity which means that my classes all have a unique identifier from the database. I always use the ID from the database to generate the hashcode.

// Unique ID from database
private int _id;

...    
{
  return _id.GetHashCode();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.