Java-Bitwise Operators

Bitwise Operators Java has a distinction of supporting special operators known as bitwise operators for manipulation of data at values of bit level. Bitwise operators can be applied to the interger types, byte, char, short, int and long. Bitwise operators may not be applied to float or double. Bitwise AND(&) The bitwise AND operator is … Read more…