Is there ever reason to think the >> (signed) and >>> (unsigned) right bit-shift operators in Java would perform differently? I can't detect any difference on my machine.
This is purely an academic question; it's never going to be the bottleneck I'm sure. I know: it's best to write what you mean foremost; use >> for division by 2, for example.
I assume it comes down to which architectures have which operations implemented as an instruction.
/ 2for division by 2. – Mark Byers Mar 26 '10 at 20:54>>>, or you could end up with an integer overflow. – Tom Hawtin - tackline Mar 26 '10 at 21:05