vote up 3 vote down star
4

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 the object.Equals like this:

    public override bool Equals(object obj)
    {
        return Equals(obj as SimpleTableRow<T>);
    }
    public bool Equals(SimpleTableRow<T> other)
    {
        // Check for null
        if(ReferenceEquals(other, null))
            return false;

        // Check for same reference
        if(ReferenceEquals(this, other))
            return true;

        // Check for same Id and same Values
        return Id == other.Id && Values.SequenceEqual(other.Values);
    }

When having override object.Equals I must also override GetHashCode of course. But what do I put in it? How do I create a hashcode out of a generic array? And how do i combine it with the Id integer?

    public override int GetHashCode()
    {
        return // What?
    }
flag

7 Answers

vote up 5 vote down check

Because of the problems raised in this thread, I'm posting another reply showing what happens if you get it wrong... mainly, that you can't use the array's GetHashCode(); the correct behaviour is that no warnings are printed when you run it... switch the comments to fix it:

using System;
using System.Collections.Generic;
using System.Linq;
static class Program
{
    static void Main()
    {
        // first and second are logically equivalent
        SimpleTableRow<int> first = new SimpleTableRow<int>(1, 2, 3, 4, 5, 6),
            second = new SimpleTableRow<int>(1, 2, 3, 4, 5, 6);

        if (first.Equals(second) && first.GetHashCode() != second.GetHashCode())
        { // proven Equals, but GetHashCode() disagrees
            Console.WriteLine("We have a problem");
        }
        HashSet<SimpleTableRow<int>> set = new HashSet<SimpleTableRow<int>>();
        set.Add(first);
        set.Add(second);
        // which confuses anything that uses hash algorithms
        if (set.Count != 1) Console.WriteLine("Yup, very bad indeed");
    }
}
class SimpleTableRow<T> : IEquatable<SimpleTableRow<T>>
{

    public SimpleTableRow(int id, params T[] values) {
        this.Id = id;
        this.Values = values;
    }
    public int Id { get; private set; }
    public T[] Values { get; private set; }

    public override int GetHashCode() // wrong
    {
        return Id.GetHashCode() ^ Values.GetHashCode();
    }
    /*
    public override int GetHashCode() // right
    {
        int hash = Id;
        if (Values != null)
        {
            hash = (hash * 17) + Values.Length;
            foreach (T t in Values)
            {
                hash *= 17;
                if (t != null) hash = hash + t.GetHashCode();
            }
        }
        return hash;
    }
    */
    public override bool Equals(object obj)
    {
        return Equals(obj as SimpleTableRow<T>);
    }
    public bool Equals(SimpleTableRow<T> other)
    {
        // Check for null
        if (ReferenceEquals(other, null))
            return false;

        // Check for same reference
        if (ReferenceEquals(this, other))
            return true;

        // Check for same Id and same Values
        return Id == other.Id && Values.SequenceEqual(other.Values);
    }
}
link|flag
Could you explain the reasoning behind the right version of GetHashCode()? – Vinko Vrsalovic May 31 at 20:30
@Vinko: Can you clarify? Do you mean "why does the hash-code matter?" - or "why that approach?". Given your rep and answer count, I'm assuming the latter; this is simply a way of getting a hash that takes all the values into account the "multiply by a prime and add the next hash" is a very common approach for hashing that avoids collisions (contrast xor; in which case a collection of "all 8s" could easily give a predictable hashcode of 0). Did I miss anything? – Marc Gravell May 31 at 20:57
See also: stackoverflow.com/questions/263400#263416... different prime number, but same effect. – Marc Gravell May 31 at 21:01
Yes, that was the question. Thanks. – Vinko Vrsalovic May 31 at 21:55
vote up 1 vote down
public override int GetHashCode()    {
        return Id.GetHashCode() ^ Values.GetHashCode();  
}


There are several good points in the comments and other answers. The OP should consider whether the Values would be used as part of the "key" if the object were used as a key in a dictionary. If so, then they should be part of the hash code, otherwise, not.

On the other hand, I'm not sure why the GetHashCode method should mirror SequenceEqual. It's meant to compute an index into a hash table, not to be the complete determinant of equality. If there are many hash table collisions using the algorithm above, and if they differ in the sequence of the Values, then an algorithm should be chosen that takes sequence into account. If sequence doesn't really matter, save the time and don't take it into account.

link|flag
I also don't think arrays have GetHashCode implemented taking into account all elements – Grzenio Mar 12 at 14:17
That will do a reference comparison on Values, and will not be compatible with SequenceEqual (i.e. for different arrays with the same contents) – Marc Gravell Mar 12 at 14:17
Guys, I've already said it before, but be careful using all of the elements of an exposed array. The result of GetHashCode() should be same for the lifetime of the object, otherwise it won't work as a hashtable key. There's no guarantee that this array won't change, so don't use it in GetHashCode! – Dustin Campbell Mar 12 at 14:34
@Dustin: Good clarification. That's what I meant when I said "if the object is to be used as a key". Such objects may not change in a way that would change their hash code or equality, while they are acting as a key. – John Saunders Mar 12 at 14:41
@John - such points are very valid, and well raised: however, posting a GetHashCode() implementation that is incompatible with the posted Equals() is very wrong, and could lead to a lot of problems - lost data, etc. – Marc Gravell Mar 12 at 14:49
show 5 more comments
vote up 0 vote down

I would do it this way:

long result = Id.GetHashCode();
foreach(T val in Values)
    result ^= val.GetHashCode();
return result;
link|flag
pretty reasonable - note that xor can lead to a lot of collisions; generally a multiplier/addition is preferred – Marc Gravell Mar 12 at 14:18
interesting, many people told me to use xor instead. I should read more about it then. – Grzenio Mar 12 at 14:44
In response to that; what would the hash of {3,3,3,3} be? and {4,4,4,4}? or {4,0,0,4}? or {1,0,1,0}? You see the issue... – Marc Gravell Mar 12 at 14:46
vote up 0 vote down

Provided that Id and Values will never change, and Values is not null...

public override int GetHashCode() { return Id ^ Values.GetHashCode(); }

Note that your class is not immutable, since anyone can modify the contents of Values because it is an array. Given that, I wouldn't try to generate a hashcode using its contents.

link|flag
That will do a reference comparison on Values, and will not be compatible with SequenceEqual (i.e. for different arrays with the same contents) – Marc Gravell Mar 12 at 14:17
Right, but because the array is exposed and any external code can change it, it is frankly dangerous to compare the contents. – Dustin Campbell Mar 12 at 14:21
So I should really just use the HashCode of the Id? – Svish Mar 12 at 14:36
Which means that... IF the result of Equals changes, the result of GetHashCode wouldn't necessarily have to change, but if GetHashCode changes, then Equals would also change? – Svish Mar 12 at 14:38
Not necessarily. The reference to Values shouldn't change (unless you change it in your code) -- so it should be OK to use that. John Saunders has the best answer here. – Dustin Campbell Mar 12 at 14:42
show 1 more comment
vote up 0 vote down

How about something like:

    public override int GetHashCode()
    {
        int hash = Id;
        if (Values != null)
        {
            hash = (hash * 17) + Values.Length;
            foreach (T t in Values)
            {
                hash *= 17;
                if (t != null) hash = hash + t.GetHashCode();
            }
        }
        return hash;
    }

This should be compatible with SequenceEqual, rather than doing a reference comparison on the array.

link|flag
It is dangerous to compare the contents of Values because they aren't guaranteed to be the same for the lifetime of the object. Because the array is exposed, any external class can change it, which affects the hashcode! – Dustin Campbell Mar 12 at 14:23
The point, though, is that it is compatible with the Equals method as posted. – Marc Gravell Mar 12 at 14:45
It affects the equality as well. And you can't use the reference to the arary to compute hashcode, because you end up with two equal objects with different hash codes. – Grzenio Mar 12 at 14:48
@Grzenio - is that aimed at me or Dustin? I don't use the reference for exactly that reason... – Marc Gravell Mar 12 at 14:51
Sorry for the confusion, it was a reply to Dustin's comment here and his code at the same time. – Grzenio Mar 12 at 15:22
vote up 0 vote down

FWIW, it's very dangerous to use the contents of the Values in your hash code. You should only do this if you can guarantee that it will never change. However, since it is exposed, I don't that guarantee is possible. The hashcode of an object should never change. Otherwise, it loses it's value as a key in a Hashtable or Dictionary. Consider the hard-to-find bug of using an object as a key in a Hashtable, it's hashcode changes because of an outside influence and you can no longer find it in the Hashtable!

link|flag
vote up 0 vote down

Since the hashCode is kinda a key for storing the object (lllike in a hashtable), i would use just 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.