In C, it's legal to write something like:
int foo = +4;
However, as far as I can tell, it's a no-op. Is it?
|
In C, it's legal to write something like:
However, as far as I can tell, it's a no-op. Is it? |
|||
| show 1 more comment |
|
As per the C90 standard in 6.3.3.3:
and
|
|||||||||||
|
|
You can use it as a sort of assertion that an expression has arithmetic type:
This will generate a compile-time error if That is about the only practical use I can think of. |
|||||||||||||||||||||
|
|
There's one very handy use of the unary plus operator I know of: in macros. Suppose you want to do something like
If
And now, the directive will be syntactically correct whether Of course whether this will yield the desired semantics is a completely separate question, but in some useful cases it will. Edit: Note that you can even use this to distinguish the cases of
|
|||||||||||||||||
|
|
Pretty much. It's mainly present for completeness, and to make constructions like this look a little cleaner:
|
|||
|
|
|
By 'no-op', do you mean the assembly instruction? +4 is just 4 - the compiler won't add any further instructions. |
|||||
|
Not precisely a no-opThe unary It's difficult to see this in action because the promotions are so generally applied. I came up with this:
which (on my Mac) prints
|
||||
|
|
+short(1)has typeint, notshort. – MSalters Jul 11 '11 at 10:19