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?
|
|
It's there to be overloaded if you feel the need; for all predefined types it's essentially a no-op. The practical uses of a no-op unary arithmetic operator are pretty limited, and tend to relate to the consequences of using a value in an arithmetic expression, rather than the operator itself. For example, it can be used to force widening from smaller integral types to |
|||||||||
|
|
Actually, unary plus does do something - even in C. It performs the usual arithmetic conversions on the operand and returns a new value, which can be an integer of greater width. If the original value was an unsigned integer of lesser width than Usually this isn't that important, but it can have an effect, so it's not a good idea to use unary plus as a sort of "comment" denoting that an integer is positive. Consider the following C++ program:
This will display "x is an int". So in this example unary plus created a new value with a different type and signedness. |
|||||||||
|
|
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. |
|||||||
|
|
One thing the built-in unary
but you can't do this
:) P.S. "Overloading" is definitely not the right answer. Unary |
|||
|
|
|
From K&R second edition:
|
|||
|
|
|
The main thing unary + accomplishes is type promotion to an int for smaller-than-int data types. This can be quite useful if you're trying to print char data using
is very different from
It's also available for overloading, but in practice your overload should be nearly a NOP. |
|||
|
|
|
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. |
|||
|
|
|
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 |
|||||
|
|
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:
|
|||||||
|
|
If you ever need to print the numeric value of raw bytes (eg, small numbers stored as char) for debug or whatever reason, unary + can simplify the print code. Consider
This is just a quick example. I am sure there are other times when unary + can help treat your bytes more like numbers instead of like text. |
|||
|
|
|
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. |
|||||||
|
|
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. |
||||
|
|
|
A historical tidbit. The C99 standardization committee also thought existing uses of unary plus were fairly rare, as evidenced by their considering reusing it to achieve another feature in the language: inhibition of translation-time evaluation of floating-point constant expressions. See the following quote from the C Rationale, section F.7.4:
In the end, the semantics were reversed, with run-time evaluation enforced in most contexts (at least up to the "as if" rule), and the ability to enforce translation-time evaluation by the use of static initializers. Note that the main difference lies in the occurrence of floating point exceptions, and other floating point rounding or precision settings, where present. |
|||
|
|
