>>> (bitwise unsigned right shift)
127
The following two expressions are equivalent:
A >>= B
A = (A >> B)
For more information, see
“Operator precedence and associativity” on page 32
.
Example
The following commented code uses the bitwise right shift and assignment (
>>=
)
operator.
function convertToBinary(numberToConvert:Number):String {
var result:String = "";
for (var i = 0; i<32; i++) {
// Extract least significant bit using bitwise AND
var lsb:Number = numberToConvert & 1;
// Add this bit to the result string
result = (lsb ? "1" : "0")+result;
// Shift numberToConvert right by one bit, to see next bit
numberToConvert >>= 1;
}
return result;
}
trace(convertToBinary(479));
// Returns the string 00000000000000000000000111011111
// This string is the binary representation of the decimal
// number 479
See also
>> (bitwise right shift)
>>> (bitwise unsigned right shift)
Availability
Flash Player 5.
Usage
expression1
>>>
expression2
Parameters
expression1
A number or expression to be shifted right.
expression2
A number or expression that converts to an integer between 0 and 31.
Returns
A 32-bit unsigned integer.
Description
Operator (bitwise); the same as the bitwise right shift (
>>
) operator except that it does not
preserve the sign of the original
expression
because the bits on the left are always filled with 0.
Summary of Contents for FLEX-FLEX ACTIONSCRIPT LANGUAGE
Page 1: ...Flex ActionScript Language Reference...
Page 8: ......
Page 66: ...66 Chapter 2 Creating Custom Classes with ActionScript 2 0...
Page 76: ......
Page 133: ...break 133 See also for for in do while while switch case continue throw try catch finally...
Page 135: ...case 135 See also break default strict equality switch...
Page 146: ...146 Chapter 5 ActionScript Core Language Elements See also break continue while...
Page 808: ...808 Chapter 7 ActionScript for Flash...
Page 810: ...810 Appendix A Deprecated Flash 4 operators...
Page 815: ...Other keys 815 Num Lock 144 186 187 _ 189 191 192 219 220 221 222 Key Key code...
Page 816: ...816 Appendix B Keyboard Keys and Key Code Values...
Page 822: ...822 Index...