I'm a bit confused:
long v = 0;
v <<= 8;
v |= 230;
I know << is the signed left shift operator and | Bitwise the inclusive OR but I'm confused to what the equals does?
So fist v is 0. So << doesn't have any effect? Then it equals 1000 but what happens then?
edit: I've edited the title so others might better find this question: added "compound operators"