I am looking at the verboden sun.misc.Unsafe code and I see quite a few examples, for example
private long ix(int i) {
return address + (i << 0);
}
At first glance, this does not mean and should not do anything simple address + i, but nevertheless, an idiom appears everywhere. What's going on here?
source
share