description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: Unary Plus and Negation Operators: + and - |
Unary Plus and Negation Operators: + and - |
11/04/2016 |
|
|
2c58c4f4-0d92-4ae3-9d0c-1a6157875cc1 |
+ cast-expression
- cast-expression
The result of the unary plus operator (+
) is the value of its operand. The operand to the unary plus operator must be of an arithmetic type.
Integral promotion is performed on integral operands. The resultant type is the type to which the operand is promoted. Thus, the expression +ch
, where ch
is of type char
, results in type int
; the value is unmodified. See Standard Conversions for more information about how the promotion is done.
The unary negation operator (-
) produces the negative of its operand. The operand to the unary negation operator must be an arithmetic type.
Integral promotion is performed on integral operands, and the resultant type is the type to which the operand is promoted. See Standard Conversions for more information about how the promotion is performed.
Microsoft Specific
Unary negation of unsigned quantities is performed by subtracting the value of the operand from 2^n, where n is the number of bits in an object of the given unsigned type.
END Microsoft Specific
Expressions with Unary Operators
C++ Built-in Operators, Precedence and Associativity