Overloading +/- unary operators - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:48:13Z http://stackoverflow.com/feeds/question/778939 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/778939/overloading-unary-operators 1 Overloading +/- unary operators Joan Venge 2009-04-22T20:00:15Z 2009-04-23T20:13:10Z <p>When you overload the - unary operators, for an immutable type, you can write it like:</p> <pre><code>public static Point3 operator - (Point3 p) { return new Point3 (-p.X, -p.Y, -p.Z); } </code></pre> <p>But for the + unary operator, how should you implement it? Like this:</p> <pre><code>public static Point3 operator + (Point3 p) { return p; } </code></pre> <p>or like this:</p> <pre><code>public static Point3 operator + (Point3 p) { return new Point3 (p); } </code></pre> http://stackoverflow.com/questions/778939/overloading-unary-operators/778950#778950 1 Answer by Zifre for Overloading +/- unary operators Zifre 2009-04-22T20:02:30Z 2009-04-22T20:02:30Z <p>I would prefer the second method (although it would be slower), but assuming <code>Point3</code> is a 3D point, it should probably be a <code>struct</code> not a <code>class</code>.</p> http://stackoverflow.com/questions/778939/overloading-unary-operators/778956#778956 4 Answer by jjnguy for Overloading +/- unary operators jjnguy 2009-04-22T20:03:53Z 2009-04-22T20:23:03Z <p>Either way is fine. You are not mutating the original object in either of the two methods.</p> <p>If you call <code>string.substring(0, string.length())</code>, there is no reason why the original string cannot be returned. </p> <p>The only contract you sign with immutability is that once an object is created, it doesn't change.</p> http://stackoverflow.com/questions/778939/overloading-unary-operators/778970#778970 2 Answer by Lasse V. Karlsen for Overloading +/- unary operators Lasse V. Karlsen 2009-04-22T20:07:48Z 2009-04-22T20:07:48Z <p>If the struct is immutable, you can choose, I would return the original value.</p> <p>If mutable, return a new one.</p> http://stackoverflow.com/questions/778939/overloading-unary-operators/778971#778971 1 Answer by Mark for Overloading +/- unary operators Mark 2009-04-22T20:08:32Z 2009-04-22T20:08:32Z <p>I can't imagine a case where it would make a difference to an immutable type. Best to just return <code>p</code>, by <a href="http://en.wikipedia.org/wiki/Principle%5Fof%5Fleast%5Fastonishment" rel="nofollow">principle of least surprise</a>.</p> http://stackoverflow.com/questions/778939/overloading-unary-operators/779133#779133 2 Answer by Hallgrim for Overloading +/- unary operators Hallgrim 2009-04-22T20:40:29Z 2009-04-22T20:40:29Z <p>In my opinion it depends on implementation of Point3.Equals().</p> <p>Consider the following code:</p> <pre><code>Dictionary&lt;Point3, string&gt; cache; Point3 pointA = new Point3(1, 2, 3); Point3 pointB = new Point3(1, 2, 3); cached[pointA] = "Value Aaa"; cached[pointB] = "Value Bbb"; Console.WriteLine(cached[pointA]); Console.WriteLine(cached[pointB]); </code></pre> <p>If Point3 has reference semantics (pointA.Equals(pointB) when they are the same object), this will output:</p> <pre><code>Value Aaa Value Bbb </code></pre> <p>If Point3 has value semantics (pointA.Equals(pointB) when their x, y and z values are equal), this will output:</p> <pre><code>Value Bbb Value Bbb </code></pre> <p>With value semantics it would not really matter if you create a new object or not. You could probably just return the same to avoid creating garbage.</p> <p>If your type has reference semantics, you probably want the unary plus to create a new object, so that it behaves the same way as the other operators.</p> http://stackoverflow.com/questions/778939/overloading-unary-operators/779159#779159 0 Answer by Randolpho for Overloading +/- unary operators Randolpho 2009-04-22T20:47:33Z 2009-04-22T20:53:09Z <p>Um.... </p> <pre><code>public static Point3 operator - (Point3 p) { return new Point3 (-p); } </code></pre> <p>correct me if I'm wrong, but doesn't that set up an infinite recursion? You're calling the unary (-) operator inside the unary (-) operator method. </p> <p>It seems to me you're going to want to do this:</p> <pre><code>public static Point3 operator - (Point3 p) { return new Point3 (-(p.X), -(p.Y), -(p.Z)); // EDIT: Added parens for the sake of explicity. I don't recall the operator precedence in this case. } </code></pre> <p>Assuming you have such a constructor and properties on your Point3 class. </p>