What does the unary plus operator do? There are several definitions that I have found (here and here) but I still have no idea what it would be used for. It seems like it doesn't do anything but there has be a reason for it, right?
|
1
|
|||
|
|
|
It's there to be overloaded if you feel the need; for all predefined types it does nothing useful. |
||
|
|
|
|
I can't cite any source for this, but I have come to understand it is for explicit type promotion, which implies lossless type conversion. That puts it at the top of the conversion hierarchy,
Of course, that's from my interpretation of a note in one of the microsoft (really old) c/c++ manuals that I read about 15 years ago, so take it with a grain of salt. |
|||
|
|
|
|
Unary plus was present in C, where it did absolutely nothing (much like the Once it was in C++, it was natural to allow an overload function, just like unary minus, and Stroustrup might have introduced it for that reason if it wasn't already there. So, it means nothing. It can be used as as sort of decoration to make things look more symmetrical, using +1.5 as the opposite to -1.5 for example. In C++, it can be overloaded, but it's going to be confusing if If you're looking for a reason why it's there, find something about the early history of C. I suspect there was no good reason, as C was not really designed. Consider the useless |
||
|
|
|
|
Not much. The general argument for allowing the overload of I believe that I first read this argument from Stroustrop, but I don't have my books with me right to verify it. I might be wrong. |
||
|
|
|
|
I've seen it used for clarity, to emphasize the positive value as distinct from a negative value:
But that's a pretty weak use. The answer is definitely overloading. |
||
|
|
|
|
I suppose you could use it to always make a number positive. Just overload the unary + operator to be abs. Not really worth confusing your fellow developers, unless you really just want to obfuscate your code. Then it'd work nicely. |
||
|
|
EDIT Rewrote completely, because I was waaaayyy off in my original answer. This should allow you to handle the explicit declaration of your type as a positive value (I think in mostly non-mathematical operations). It seems that negation would be more useful, but I guess here's an example of where it might make a difference:
|
||||||
|
