什麽是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)
使用的參數:
- typedarray:它是共享整數類型數組Int8Array,Uint8Array,Int16Array等。
- index:它是typedArray中用於計算按位XOR的位置。
- 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。