Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

HashSet.Add() first compares the results of GetHashCode(). If those are equal, it calls Equals().

Now, my understanding is in order to implement GetHashCode(), something must be done with the fields of an object. A simple example implementation can be found at What is the best algorithm for an overridden System.Object.GetHashCode?.

In my test comparing both on 1.000.000 pairs of objects filled with random data, performance is more or less equal between the two. GetHashCode() is implemented as in the linked example, Equals() simply calls Equals() on all fields. So why would one want to use GetHashCode() over Equals() ?

share|improve this question
For a large object with many readonly fields, the hash code may be computed in the constructor and stored as an additional field in the object. In this case the Equals method would use the hash code field as an optimization, before comparing other field values. If the hash code is different, we can be sure the remaining fields are different as well. This works whether used in a hash table, or simply used in equality comparisons. GetHashCode returns the pre-computed hash code field. If some fields are also immutable objects, this can extend down many levels and speed up comparisons. – Frank Hileman Mar 7 at 20:00

4 Answers

up vote 7 down vote accepted

For some types, an Equals test may be relatively expensive. It typically has to compare every field of the class. In other words, it takes linear time in the size of the class. Bigger classes are more expensive to compare for equality.

Now, what happens if you need to need to compare one object against 1000 others? Calling Equals 1000 times might get expensive. You need to do N*2000 field accesses, if N is the size of the class

GetHashCode instead generates a "mostly unique" integer based on the contents of the class. In other words, the class fields are accessed once. And once you have that, you can compare this integer to the 1000 integers that make up the other objects' hash codes.

Even in such a naive use case, we now only need N*1000 field accesses.

But what if we store the hash code? When we insert an object into a hash set, its hash code is computed once. Now, any time we want to do a lookup in the hash set, we just need to compute one hash code (that of the external object), and then you just have to compare simple integers. So N class field accesses (for the new object whose hash code we need to compute), plus a number of integer comparisons, which vary, depending on the algorithm, but are 1) relatively few, and 2) cheap.

share|improve this answer
I hadn't thought of the posibility to store the hash. Clear explanation. – Stijn Jun 10 '11 at 11:41
@Stijn: in reality, hash tables are quite a bit more complex than this, but yeah, the basic idea is to avoid recomputing the hash – jalf Jun 10 '11 at 11:46
actually, you need to do N*2*1000 field access only if all the 1001 objects are Equals; getting the hash code, conversely, will surely hit every field in every object. In the end, you're gaining a factor 2 wrt to field comparisons in the worst case, loosing some time to get those hashes. – ubik Feb 18 at 22:28

Because if an algorithm wants to test if 1 object is already in a set of 1.000.000 objects, it has to call Equals 1.000.000 times, but GetHashCode() just once (and a few calls to Equals to eliminate objects which are different though having the same hash code).

share|improve this answer
+1, but I've accepted @jalf's answer for having a more extensive explanation. – Stijn Jun 10 '11 at 11:39

GetHashCode() gets you an integral value that you can use for hashtables. That hash code is one reason why hashtables are so performant. However there can be more than one objects with the same hashcode. That's why Equals() is called. If the objects are not equal, they can go into the same bucket, if they are equal, then it is already in the hashtable and does not need to be added.

share|improve this answer

GetHashCode lets you put thing into buckets - multiple objects can have the same hash code. Equals is then used to find matches within a bucket. This let's you find things in large collections very quickly

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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