summary of operator java

Solutions on MaxInterview for summary of operator java by the best coders in the world

showing results for - "summary of operator java"
Diego
01 Oct 2019
1&&      Conditional-AND
2||      Conditional-OR
3?:      Ternary (shorthand for 
4        if-then-else statement)
5
Giovanni
25 Jan 2018
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