vote up 3 vote down star
1

Why GetHashCode is not a property like HashCode in .NET?

flag

56% accept rate

6 Answers

vote up 1 vote down check

I don't think there's any good reason. Any implemention of GetHashCode should be fast enought to put into a property. That said, there are plenty of design flaws in the .Net framework, some small, some serious. This seems like a small one.

link|flag
3  
Based on the guidelines specified in the Framework Design Guidelines, if the computation is "expensive" it should be a method not a property. Since hashcode computation is a complete unknown for custom objects as far as the Framework is concerned it's better as a function. – Scott Dorman Feb 11 at 21:14
vote up 11 vote down

Probably because it requires computation, and exposing it as a propery might imply that the hashcode is already available for free.

Edit: Guidelines on this: Properties versus Methods

"The operation is expensive enough that you want to communicate to the user that they should consider caching the result."

Perhaps GetHashCode is expensive enough in some cases.

link|flag
Thanks, is there a guideline for not having properties that requires computation? The reason I ask is, I have seen lots that computes when you access the property. – Joan Venge Feb 11 at 20:55
vote up 1 vote down

The hash must be calculated, and...

The GetHashCode method can be overridden by a derived type. Value types must override this method to provide a hash function that is appropriate for that type and to provide a useful distribution in a hash table. For best results, the hash code must be based on the value of an instance field or property instead of a static field or property.

Source: MSDN

link|flag
Thanks, but properties can be overridden too, right? – Joan Venge Feb 11 at 20:57
vote up 1 vote down

Besides that a property is nothing else than a getter and a setter method, from a design perspective a property should never contain any computations other than initializing or validation, eg:

private object _obj;
public object Obj
{
  get
  {
    if(_obj == null)
    {
      _obj = new object();
    }
    return _obj;
  }
  set
  {
    if(value == badvalue)
    {
      throw new ArgumentException("value");
    }
    _obj = value;
  }
}

GetHashCode() does not contain extensive computations, but it could contain such long running operations (just from the fact that it could compute the hashcode of an object in a complex manner), this is why its a method instead of a property.

link|flag
vote up 0 vote down

properties should only be used if the computation behind them is really fast or cached

besides most of the time the only logic in properties should be validation

link|flag
vote up -2 vote down

You have to remember that the .NET Framework is designed to be accessed by a wide variety of languages.

In theory you could create a compiler that is incapable of correctly overriding properties. While that would make for a pretty crappy compiler, it would not necessarily be illegal. (Remember properties are just methods with some meta data)

link|flag
You could also make a compiler that can't override methods. And plenty of other .NET interfaces require overring a property. – MichaelGG Feb 11 at 21:16
Plenty of interfaces require overriding a property, but Object is the grandfather of everything, why not keep it simple? – Guvante Feb 12 at 19:06

Your Answer

Get an OpenID
or

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