Java - Bitwise operators
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.Java
Other pieces of example codes:0x01 | 0x02
i << 4
(i & 4)
z = (x >> 2) >> 2
i ^ j
x = ~(32 >>2)
Bitwise operators in another programming language: