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 degrade performance?
| ||||
|
feedback
|
|
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:
This is better than the common practice of
By the way, the earlier algorithm is the one currently used by the C# compiler for anonymous types. EDIT: This page gives quite a few options. I think for most cases the above is "good enough" and it's incredibly easy to remember and get right. | |||||||||||||||||||||
feedback
|
|
I have a Hashing class in Helper library that I use it for this purpose.
Then, simply you can use it as:
I didn't assess its performance, so any feedback is welcomed. | |||||||
feedback
|
|
Here is my hashcode helper.
Also it has extension method to provide a fluent interface, so you can use it like this:
or like this:
| ||||
|
feedback
|
|
Microsoft already provides a good generic HashCode generator: Just copy your property/field values to an anonymous type and hash it:
This will work for any number or properties. It does not use boxing or extra resources. It just uses the algorithm already implemented in the framework for anonymous types. | |||||||||||||||||
feedback
|
|
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. | |||||||||||
feedback
|
|
This is a good one:
And here is how to use it:
| |||||||||||||
feedback
|
|
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.
| |||||||
feedback
|
|
Here is my simplistic approach. I am using the classic builder pattern for this. It is typesafe (no boxing/unboxing) and also compatbile with .NET 2.0 (no extension methods etc.). It is used like this:
And here is the acutal builder class:
| ||||
|
feedback
|
protected by Neal Mar 22 at 22:03
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
GetHashCode. I hope it would be helpful for others. Guidelines and rules for GetHashCode written by Eric Lippert – rene Mar 22 at 21:59