Specifications
and the value of the variable and assigns the result to the variable.
variable <<= expression;
This operator performs a bit-wise left shift on the variable by an
expression number of bits. Zeros are shifted in from the right.
<<= operator
variable >>= expression;
This operator performs a bit-wise (sign-preserving) right shift on the
variable by an expression number of bits.
>>= operator
variable >>>= expression;
This operator performs a bit-wise (zero-padding) right shift on the
variable by an expression number of bits.
>>>= operator
Arithmetic operators
These operators are used to perform arithmetic computations on their operands.
392
Enfocus Switch 10