3e 3e vs 3e 3e 3e operators in java

Solutions on MaxInterview for 3e 3e vs 3e 3e 3e operators in java by the best coders in the world

showing results for - " 3e 3e vs 3e 3e 3e operators in java"
Marlene
28 Jan 2017
1>> is a right shift operator shifts all of the bits in a value to the 
2right to a specified number of times.
3int a =15;
4a= a >> 3;
5The above line of code moves 15 three characters right.
6
7>>> is an unsigned shift operator used to shift right. The places which 
8were vacated by shift are filled with zeroes