1&& Conditional-AND
2|| Conditional-OR
3?: Ternary (shorthand for
4 if-then-else statement)
5
1~ Unary bitwise complement
2<< Signed left shift
3>> Signed right shift
4>>> Unsigned right shift
5& Bitwise AND
6^ Bitwise exclusive OR
7| Bitwise inclusive OR
8