ActionScript赋值运算符,>>> =是什么意思?

时间:2022-10-17 22:33:53

On the Adobe ActionScript page link below, there is a list detailing Operator Precedence. It includes the following:

在下面的Adobe ActionScript页面链接中,有一个详细说明Operator Precedence的列表。它包括以下内容:

= *= /= %= += -= <<= >>= >>>= &= ^= |=

What do the <<= >>= >>>= assignments mean?

<< = >> = >>> =赋值是什么意思?

http://www.adobe.com/devnet/actionscript/learning/as3-fundamentals/operators.html#articlecontentAdobe_numberedheader_1

1 个解决方案

#1


1  

They are Bitwise compound assignment operators, you can find descriptions with examples in AS docs

它们是按位复合赋值运算符,您可以在AS文档中找到包含示例的说明

#1


1  

They are Bitwise compound assignment operators, you can find descriptions with examples in AS docs

它们是按位复合赋值运算符,您可以在AS文档中找到包含示例的说明