Bitwise Operators
Like other operators bitwise operators have rules of precedence and associativity that determine how expressions involved them are evaluated.
Bitwise Operators
|
Logical Operators
|
(unary) bitwise complement
|
~
|
|
Bitwise 'and'
|
&
|
Bitwise 'exclusive or'
|
^
|
Bitwise 'inclusive or'
|
|
|
Shift Operators
|
Left Shift
|
<<
|
|
Right Shift
|
>>
|