I'm without my Java reference book and I'm having a tough time finding an answer with Google.
What is the difference between the ">>" and ">>>" operators in Java?
int value = 0x0100;
int result = (value >> 8);
System.out.println("(value >> 8) = " + result); // Prints: "(value >> 8) = 1"
result = (value >>> 8);
System.out.println("(value >>> 8) = " + result); // Prints: "(value >>> 8) = 1"