Possible Duplicate:
Java's >> versus >>> Operator?
Hi,
I know >>
or <<
can improve the performance , but what's the purpose about >>>
operator ?
ex PriorityQueue class in JDK source file,
private void heapify() {
for (int i = (size >>> 1) - 1; i >= 0; i--)
siftDown(i, (E) queue[i]);
}
Don't tell me how >>>
works , just why I use it .
Thank you