什么是Atomics?
Atomics是JavaScript中的一个对象,它提供要作为静态方法执行的原子操作。就像JavaScript中的Math对象一样,Atomics的所有属性和方法也是静态的。
原子与SharedArrayBuffer(通用定长二进制数据缓冲区)对象一起使用。原子不是像其他全局对象那样的构造函数。原子不能与新运算符一起使用或可以作为函数调用。
JavaScript中的原子操作
当存在共享内存时,多个线程可以在内存中读取和写入相同的数据。为确保准确写入和读取预测值,除非当前操作完成,否则其他操作将无法开始。原子操作也不能中断。
Atomics.and()方法
在原子运算中,有一种方法Atomics.or()用于计算数组中给定位置处具有给定值的按位或运算。该位置的旧值由Atomics.or()函数返回。除非将修改后的值写回,否则无法进行其他写操作。
用法:
Atomics.or(typedArray, index, value)
使用的参数:
- typedarray:您要修改的共享整数类型数组。
- index:它是typedArray中您要计算按位或的位置。
- value:这是您要计算按位或的数字。
返回值:
Atomics.or()返回给定位置(typedArray [index])的旧值。
下面提供上述函数的示例。
例子:
Input : arr[0] = 9; Atomics.or(arr, 0, 3); Output : 9 Input : arr[0] = 3; Atomics.or(arr, 0, 2); Output : 3
下面提供了上述函数的代码。
代码1:
<script>
<!-- creating a SharedArrayBuffer -->
var buf = new SharedArrayBuffer(25);
var arr = new Uint8Array(buf);
<!-- Initialising element at zeroth position of array with 9 -->
arr[0] = 9;
<!-- 9 (1001) OR 3 (0011) = 11 (1011) -->
<!-- Displaying the return value of the Atomics.or() method -->
console.log(Atomics.or(arr, 0, 3));
<!-- Displaying the updated SharedArrayBuffer -->
console.log(Atomics.load(arr, 0));
</script>
输出:
9 11
代码2:
<script>
<!-- creating a SharedArrayBuffer -->
var buf = new SharedArrayBuffer(25);
var arr = new Uint8Array(buf);
<!-- Initialising element at zeroth position of array with 3 -->
arr[0] = 3;
<!-- 3 (0011) AND 2 (0010) = 3 (0011) -->
<!-- Displaying the return value of the Atomics.or() method -->
console.log(Atomics.or(arr, 0, 2));
<!-- Displaying the updated SharedArrayBuffer -->
console.log(Atomics.load(arr, 0));
</script>
输出:
3 3
异常:
- 如果typedArray不是允许的整数类型之一,则引发TypeError。
- 如果typedArray不是共享的类型化数组类型,则引发TypeError。
- 如果索引超出typedArray的范围,则引发RangeError。
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 Atomics.or() In JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。