Atomics.and()
Atomics.and()
静态方法与数组中给定位置处的给定值计算按位 AND,并返回该位置处的旧值。此原子操作保证在修改的值被写回之前不会发生其他写入。
¥The Atomics.and()
static
method computes a bitwise AND with a given value at a given position in the array, and
returns the old value at that position. This atomic operation guarantees that no other
write happens until the modified value is written back.
Try it
语法
参数
¥Parameters
typedArray
-
整数类型数组。
Int8Array
、Uint8Array
、Int16Array
、Uint16Array
、Int32Array
、Uint32Array
、BigInt64Array
或BigUint64Array
之一。 index
-
typedArray
中用于计算按位 AND 的位置。 value
-
用于计算按位与的数字。
返回值
例外情况
描述
¥Description
如果 a
和 b
都为 1,则按位 AND 运算仅产生 1。AND 运算的真值表为:
¥The bitwise AND operation only yields 1, if both a
and b
are
- The truth table for the AND operation is:
a |
b |
a & b |
---|---|---|
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
例如,5 & 1
的按位与结果为 0001
,十进制为 1。
¥For example, a bitwise AND of 5 & 1
results in 0001
which
is 1 in decimal.
5 0101 1 0001 ---- 1 0001
示例
使用 and()
规范
Specification |
---|
ECMAScript Language Specification # sec-atomics.and |
浏览器兼容性
BCD tables only load in the browser
也可以看看
¥See also