This section contains topics about alternative representations of C++ tokens.
The following table summarizes the alternative representation keywords and the token that each keyword represents.
Keyword / Alternative Representation |
Token Represented |
Definition |
&& |
logical AND | |
&= |
assignment by bitwise AND | |
& |
bitwise AND | |
| |
bitwise OR | |
~ |
bitwise NOT (bitwise one's complement) | |
! |
logical negation | |
!= |
bitwise inequality | |
|| |
logical OR | |
|= |
bitwise inclusive OR | |
^ |
bitwise exclusive OR | |
^= |
bitwise XOR assignment |
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|