Hier habe ich folgendes gefunden:
Zitat:
So what about the >>> ( unsigned right shift ) operator ?
Sometimes we may require a right shift ( >> ) but we wouldn't like it to fill one's , instead we'd like it to fill zero's & only zero's no matter what . This is where the >>> ( unsigned right shift ) operator fits in .
It fills the void left behind by the leftmost bits with zero's only . So -
78 >>> 2 = 19 &
-78 >>> 2 = 1073741804 Try here.
Eine Entsprechung in Delphi ist mir nicht bekannt.
Grüße
Klaus