Friday 30 June 2017
Logical operator Vs Bitwise operator in Java : && vs &, || vs |
&& operator is a Logical operator in Java. In Java it's alias names are short-circuit AND operator, and conditional AND operator.
Friday 9 June 2017
Bit shift operators in Java
Above and beyond bitwise operators, JLS provides 3 bit shift operators for bit manipulation in Java.