Name

compl operator — Bitwise complement operator

Synopsis

               unary-expr := ~ cast-expr | compl cast-expr
            

The bitwise complement operator requires an integer or enumeration operand. It performs the usual arithmetic promotion and toggles each bit of its operand, resulting in an integer.

The compl keyword is interchangeable with the ~ token.

Example

unsigned bitmask;
bitmask = ~0xF107; // bitmask becomes 0xFFFF0EF8 (32 bits).

See Also

bitand, bitor, expression, not, xor, Chapter 3, <ciso646>

Get C++ In a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.