什么是Atomics?
- Atomics是JavaScript中的一个对象,提供了作为静态方法执行原子操作的函数。
- 就像JavaScript中的Math对象一样,Atomics的所有属性和方法也是静态的。
- 原子与SharedArrayBuffer(通用固定长度二进制数据缓冲区)对象一起使用。
- 原子不同于其他全局对象。
- 原子不能与新运算符一起使用,也不能作为函数调用。
JavaScript中的原子操作
当存在共享内存时,多个线程可以在内存中读取和写入相同的数据。为确保准确写入和读取预测值,除非当前操作完成,否则其他操作将无法开始。原子操作也不能中断。
Atomics.store()方法
- 在Atomic操作中,JavaScript中有一个内置操作Atomics.store(),用于将特定值存储在数组的特定位置。
- Atomics.store()操作返回已存储的值。
- 整数typedarray,index和value作为参数传递给函数,并且它返回已存储在相应数组中的值。
用法:
Atomics.store(typedArray, index, value)
使用的参数:
- typedarray:它是您要修改的共享整数类型的数组。
- index:它是typedArray中您要从中存储值的位置。
- value :它是您要存储的号码。
返回值:
Atomics.store()返回已存储的值。
下面提供上述函数的示例。
例子:
Input : arr[0] = 9; Atomics.store(arr, 0, 3); Output : 3
Input : arr[0] = 3; Atomics.store(arr, 0, 2); Output : 2
下面提供了上述函数的代码。
代码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;
// Displaying the SharedArrayBuffer
console.log(Atomics.load(arr, 0));
// Displaying the return value of the Atomics.store() method
console.log(Atomics.store(arr, 0, 3));
// Displaying the updated SharedArrayBuffer
console.log(Atomics.load(arr, 0));
</script>
输出:
9 3 3
代码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;
// Displaying the SharedArrayBuffer
console.log(Atomics.load(arr, 0));
// Displaying the return value of the Atomics.store() method
console.log(Atomics.store(arr, 0, 2));
// Displaying the updated SharedArrayBuffer
console.log(Atomics.load(arr, 0));
</script>
输出:
3 2 2
应用:
每当我们想要将值存储在数组的特定位置并且还想要返回相同的值时,我们就在JavaScript中使用Atomics.store()操作。
让我们看一个JavaScript程序:
<script>
// creating a SharedArrayBuffer
var mybuffer = new SharedArrayBuffer(25);
var myarray = new Uint8Array(mybuffer);
// Initialising the element at zeroth position of array
myarray[0] = 40;
// Displaying the return value of the Atomics.store() method
console.log(Atomics.store(myarray, 0, 20));
// Displaying the updated SharedArrayBuffer
console.log(Atomics.load(myarray, 0));
</script>
输出:
20 20
异常:
- 如果typedArray不是允许的整数类型之一,则Atomics.store()操作将引发TypeError。
- 如果typedArray不是共享类型数组,则Atomics.store()操作将引发TypeError。
- 如果用作Atomics.store()操作的参数的索引超出了typedArray的范围,则Atomics.store()操作将引发RangeError。
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 Atomics.store() In JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。