Is this valid?

public struct MyStruct
{
    public int Foo { get; set; }

    public static bool operator ==(MyStruct a, MyStruct b)
    {
        return a.Equals(b);
    }

    public static bool operator !=(MyStruct a, MyStruct b)
    {
        return !a.Equals(b);
    }
}

(I know it's slightly inefficient because Object.Equals uses reflection for value types by default. But is it valid?)

I'm asking because ReSharper highlights it and warns me that MyStruct defines operator '==' or operator '!=' but does not provide 'Object.Equals(object o)' and 'Object.GetHashCode()'.

link|improve this question

57% accept rate
The warning is because of what Damien is saying: it defies developers' expectations. – Dan Tao Sep 6 '10 at 8:13
1  
IMHO in Foo { get; set; } the setter is a bit weird. Value types should be immutable, A setter just fools you in a very complex web of (useless) updating. If a single value changes in a struct, just create a complete new struct. e.g.: A point is a struct. And you cannot change the X or Y of a Point. Because points are "static" entities, you cannot "move" them. If a Point changes, it has to be another Point, i.e. a new Struct. Conclusion: Make all Properties readonly and pass values only by constructor. – Caspar Kleijne Sep 6 '10 at 8:55
Caspar: People keep saying that but I strongly disagree. If I were to make the setter private, users of struct Point would just change their p.X++; to the less-readable p = new Point(p.X + 1, p.Y);, or something weird like p = p.WithX(p.X + 1);, with no benefit at all. – Stefan Monov Sep 6 '10 at 9:18
1  
The benefit of immutable value types is not simply syntax related. It's that they are much easier to reason about than mutable value types. Eric Lippert can probably explain this better than anyone - blogs.msdn.com/b/ericlippert/archive/2008/05/14/…. However, if you're aware of the evils, and everyone that interacts with your mutable value types in the future is OK with that, go for it. – Alex Humphrey Sep 6 '10 at 11:37
@Alex Humphrey: Mutable value types are fine, provided that they never mutate "this", which is to say that the only ways of mutating them are either via public mutable fields or via public methods which modify a struct passed by reference. There are some limitations in .net's handling of them (especially properties), but such limitations may be overcome by defining a Holder<T> class which contains a single public field of type T. – supercat Oct 20 '11 at 23:03
feedback

3 Answers

up vote 3 down vote accepted

Valid? Yes. But it doesn't buy you anything.

link|improve this answer
It buys me the ability to compare two MyStruct instances via '==', doesn't it? – Stefan Monov Sep 6 '10 at 8:13
@Stefan: What, you hate typing Equals? ;) I meant that it doesn't buy you anything that you didn't already have (with Equals). Typically with a struct it's a good idea to actually write out the equality logic to reap the performance benefit; but it sounds like you already knew about that, based on your comment about reflection. So, if you really prefer == to Equals but understand that it's not actually giving you anything aside from that... go for it. – Dan Tao Sep 6 '10 at 8:16
Yes, I do prefer == to Equals because I like to treat my value types the same way as I treat primitive types. Thanks. – Stefan Monov Sep 6 '10 at 8:19
@Stefan: Totally reasonable. I'd still recommend overriding Equals to avoid the reflection overhead. But that's just me. – Dan Tao Sep 6 '10 at 8:22
feedback

I think this may be interesting.

link|improve this answer
Thanks. The float-issue is minor, but worth knowing about. – Stefan Monov Sep 6 '10 at 8:17
feedback

It's valid, in terms of the fact that it compiles. But it's "invalid" in the sense that it breaks all expectations of users of your class - the framework design guidelines specify that you shouldn't implement functionality that only exists in operator overloads - that such methods should be accessible in other ways. And the standard is that Object.Equals and operator== implement the same functionality.

(Can only find the 1.1 version of the guidelines at the moment):

Provide alternate signatures. Most languages do not support operator overloading. For this reason, it is a CLS requirement for all types that overload operators to include a secondary method with an appropriate domain-specific name that provides the equivalent functionality. It is a Common Language Specification (CLS) requirement to provide this secondary method. The following example is CLS-compliant.

link|improve this answer
1  
I believe I'm not breaking the guidelines. For my struct, Object.Equals and operator== implement the same functionality, because the latter just calls the former. – Stefan Monov Sep 6 '10 at 8:14
@Stefan: That is true. But ReSharper is not aware that you've "linked up" the methods in this way. I think it's just that generally, when you see that the == and != operators have been implemented for a type, you'd expect to see Equals (and thus GetHashCode) overridden. – Dan Tao Sep 6 '10 at 8:20
feedback

Your Answer

 
or
required, but never shown

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