Overloading +/- unary operators - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T19:48:13Zhttp://stackoverflow.com/feeds/question/778939http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/778939/overloading-unary-operators1Overloading +/- unary operatorsJoan Venge2009-04-22T20:00:15Z2009-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#7789501Answer by Zifre for Overloading +/- unary operatorsZifre2009-04-22T20:02:30Z2009-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#7789564Answer by jjnguy for Overloading +/- unary operatorsjjnguy2009-04-22T20:03:53Z2009-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#7789702Answer by Lasse V. Karlsen for Overloading +/- unary operatorsLasse V. Karlsen2009-04-22T20:07:48Z2009-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#7789711Answer by Mark for Overloading +/- unary operatorsMark2009-04-22T20:08:32Z2009-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#7791332Answer by Hallgrim for Overloading +/- unary operatorsHallgrim2009-04-22T20:40:29Z2009-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<Point3, string> 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#7791590Answer by Randolpho for Overloading +/- unary operatorsRandolpho2009-04-22T20:47:33Z2009-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>