静态方法 Atomics
.or()
用数组中指定位置的值进行一次按位或运算,并返回未计算时数组中指定位置处的值。这个atomic操作保证了在修改后的值被写回之前没有其它的写入操作发生。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
Syntax
Atomics.or(typedArray, index, value)
参数
-
typedArray
-
一个共享的int数组,类型为
Int8Array
、Uint8Array
、Int16Array
、Uint16Array
、Int32Array
或Uint32Array
。 -
index
-
typedArray
中要进行按位或运算的索引。 -
value
- 要进行按位或运算的数。
返回值
typedArray[index]
处运算前的值。
异常
- 若
typedArray
不是一个可用的int类型,则抛出一个TypeError
异常。 - 若
typedArray
不是一个共享的数组类型,则抛出一个TypeError
异常。 - 若
index
索引超出了typedArray
的大小,则抛出一个RangeError
异常。
详情
当 a
或者 b
为1时,按位或运算结果为1。或运算真值表如下:
a |
b |
a | b |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
例如,让 5 & 1
进行按位或运算的结果是 0101
,也就是十进制的5:
5 0101 1 0001 ---- 5 0101
示例
var sab = new SharedArrayBuffer(1024); var ta = new Uint8Array(sab); ta[0] = 2; Atomics.or(ta, 0, 1); // returns 2, the old value Atomics.load(ta, 0); // 3
规范
规范 | 状态 | 注释 |
---|---|---|
ECMAScript Latest Draft (ECMA-262) Atomics.or |
Draft | Initial definition in ES2017. |
浏览器兼容性
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out
https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | Server | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
or |
Chrome Full support 68
|
Edge No support 16 — 17
|
Firefox Full support 57
|
IE No support No | Opera No support No | Safari No support 10.1 — ? | WebView Android No support 60 — 63
|
Chrome Android No support 60 — 63
|
Firefox Android Full support 57
|
Opera Android No support No | Safari iOS No support No | Samsung Internet Android No support No
|
nodejs Full support 8.10.0 |
Legend
- Full support
- Full support
- No support
- No support
- See implementation notes.
- See implementation notes.
- User must explicitly enable this feature.
- User must explicitly enable this feature.