Java View all facts Glossary Help |
syntactic unit > symbol > operator > bitwise operator |
bitwise operator comparison table |
Subject | use | evaluate | have purpose | is a kind of | return | is an instance of | |
---|---|---|---|---|---|---|---|
& | an infix notation | both its operands | to return true if both operands evaluate to true | a boolean | logical operator | ||
caret | an infix notation | to perform a bitwise exclusive or | a value called its result | bitwise operator | |||
shift operator | to perform a simple function of 1 to 3 arguments | bitwise operator | a value called its result | ||||
| | an infix notation | both its operands | to return true if at least one of its operands evaluates to true | a boolean | logical operator | ||
~ | to perform a bitwise complement |
| a value called its result | unary operator |
Next operator: cast operator Up: operator Previous operator: binary operator