summary of operator java code example
Example 1: summary of operators java
&& Conditional-AND
|| Conditional-OR
?: Ternary (shorthand for
if-then-else statement)
Example 2: summary of operator java
~ Unary bitwise complement
<< Signed left shift
>> Signed right shift
>>> Unsigned right shift
& Bitwise AND
^ Bitwise exclusive OR
| Bitwise inclusive OR