Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between >>> and >>

What is the difference between >>> and >> operators in Java?

like image 430
Vipul Avatar asked May 11 '10 14:05

Vipul


1 Answers

>> is arithmetic shift right, >>> is logical shift right.

In an arithmetic shift, the sign bit is extended to preserve the signedness of the number.

For example: -2 represented in 8 bits would be 11111110 (because the most significant bit has negative weight). Shifting it right one bit using arithmetic shift would give you 11111111, or -1. Logical right shift, however, does not care that the value could possibly represent a signed number; it simply moves everything to the right and fills in from the left with 0s. Shifting our -2 right one bit using logical shift would give 01111111.

like image 163
danben Avatar answered Sep 22 '22 09:09

danben