Operands
expression1 : Number
expression2 : Number
Returns
- The value of
Number
Example
The following example assigns the value
var x:Number = 15;
var y:Number = 9;
trace(x &= y); // output: 9
See also
& bitwise AND operator
,
operator
| bitwise OR operator
NOT operator
<< bitwise left shift operator
expression1 << expression2
Converts
expression1
V2. Shifts all bits of the value of V1 to the left by V2 positions. Discards bits shifted off the
left end of V1 by this operation, and inserts zeros in the bit positions on the right that are
emptied. Shifting a value left by one position is the equivalent of multiplying it by 2.
Floating-point numbers are converted to integers by discarding any digits after the decimal
point. Positive integers are converted to an unsigned hexadecimal value with a maximum
value of 4294967295 or 0xFFFFFFFF; values larger than the maximum have their most
significant digits discarded when they are converted so the value is still 32-bit. Negative
numbers are converted to an unsigned hexadecimal value via the two's complement notation,
with the minimum being -2147483648 or 0x800000000; numbers less than the minimum
are converted to two's complement with greater precision and also have the most significant
digits discarded.
The return value is interpreted as a two's complement number with sign, so the return value
will be an integer in the range -2147483648 to 2147483647.
Availability: ActionScript 1.0; Flash Player 5
140
ActionScript language elements
- A number.
- A number.
expression1 & expression2
to
9
,
^ bitwise XOR operator
,
|= bitwise OR assignment operator
and
to 32-bit integer values; you can call them V1 and
expression2
.
:
x
,
^= bitwise XOR assignment
,
~ bitwise
Need help?
Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?