当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript Atomics.xor()用法及代码示例



什么是Atomics?

  • Atomics是JavaScript中的一个对象,提供了作为静态方法执行原子操作的函数。
  • 就像JavaScript中的Math对象一样,Atomics的所有属性和方法也是静态的。
  • 原子与SharedArrayBuffer(通用固定长度二进制数据缓冲区)对象一起使用。
  • 原子不同于其他全局对象。
  • 原子不能与新运算符一起使用,也不能作为函数调用。

JavaScript中的原子操作
当存在共享内存时,多个线程可以在内存中读取和写入相同的数据。为确保准确写入和读取预测值,除非当前操作完成,否则其他操作将无法开始。原子操作也不能中断。

Atomics.xor()方法


  • 在Atomic运算中,有一个内置的JavaScript运算Atomics.xor(),用于计算数组中给定位置具有给定值的按位XOR。
  • Atomics.xor()操作返回该位置的旧值。
  • 整数typedarray,index和value作为参数传递给函数,并且它返回已存储在相应数组中的值。

用法:

Atomics.xor(typedArray, index, value)

使用的参数:

  1. typedarray:它是共享整数类型数组Int8Array,Uint8Array,Int16Array等。
  2. index:它是typedArray中用于计算按位XOR的位置。
  3. value:用于计算按位异或的数字。

返回值:
Atomics.xor()返回给定位置的旧值(typedArray [index])。

以下是上述函数的示例:

例子:

Input : arr[0] = 7
        Atomics.xor(arr, 0, 2)
Output : 5
Input : arr[0] = 4
        Atomics.xor(arr, 0, 3)
Output : 7

下面提供了上述函数的代码:

代码1:

<script> 
    // creating a SharedArrayBuffer 
    var buf = new SharedArrayBuffer(16); 
var arr = new Uint8Array(buf); 
  
// Initialising element at zeroth position of array with 7 
arr[0] = 7; 
  
// Displaying the SharedArrayBuffer 
console.log(Atomics.load(arr, 0)); 
  
// Displaying the return value of the Atomics.xor() method 
console.log(Atomics.xor(arr, 0, 2)); 
  
// Displaying the updated SharedArrayBuffer 
console.log(Atomics.load(arr, 0));

输出:

7
5
5

代码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.xor() method 
console.log(Atomics.xor(arr, 0, 5)); 
  
// Displaying the updated SharedArrayBuffer 
console.log(Atomics.load(arr, 0));

输出:

3
6
6

应用:
每当我们想使用任何值计算按位XOR并想返回计算出的值时,我们就在JavaScript中使用Atomics.xor()操作。

让我们看一个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] = 15; 
  
// Displaying the return value of the Atomics.xor() method 
console.log(Atomics.xor(myarray, 0, 10)); 
  
// Displaying the updated SharedArrayBuffer 
console.log(Atomics.load(myarray, 0));

输出:

5
5

异常:

  • 如果typedArray不是允许的整数类型之一,则Atomics.xor()操作将引发TypeError。
  • 如果typedArray不是共享类型数组,则Atomics.xor()操作将引发TypeError。
  • 如果用作Atomics.xor()操作的参数的索引超出了typedArray的范围,则Atomics.store()操作将引发RangeError。



注:本文由纯净天空筛选整理自akash1295大神的英文原创作品 Atomics.xor() In JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。