什麽是Atomics?
- Atomics是JavaScript中的一個對象,提供了作為靜態方法執行原子操作的函數。
- 就像JavaScript中的Math對象一樣,Atomics的所有屬性和方法也是靜態的。
- 原子與SharedArrayBuffer(通用固定長度二進製數據緩衝區)對象一起使用。
- 原子不同於其他全局對象。
- 原子不能與新運算符一起使用,也不能作為函數調用。
JavaScript中的原子操作
當存在共享內存時,多個線程可以在內存中讀取和寫入相同的數據。為確保準確寫入和讀取預測值,除非當前操作完成,否則其他操作將無法開始。原子操作也不能中斷。
Atomics.and()方法
- 在Atomic運算中,有一個內置的JavaScript運算Atomics.and(),用於計算數組中給定位置的給定值與按位與。
- Atomics.and()操作返回該位置的舊值。
- 整數typedarray,index和value作為參數傳遞給函數,並且它返回已存儲在相應數組中的值。
用法:
Atomics.and(typedArray, index, value)
使用的參數:此方法接受以下三個參數:
- typedarray:此參數指定共享整數類型的數組Int8Array,Uint8Array,Int16Array等。
- index:此參數指定數組中的位置,typedArray用於計算按位與。
- value:此參數指定與之進行按位運算的數字。
返回值:Atomics.and()方法返回給定位置(typedArray [index])的舊值。
例子:
Input : arr[0] = 5 Atomics.and(arr, 0, 3) Output : 1 Input : arr[0] = 4 Atomics.and(arr, 0, 6) Output : 4
以下示例程序旨在說明Atomics.and()方法:
程序1:
<script type="text/javascript">
// creating a SharedArrayBuffer
var buf = new SharedArrayBuffer(16);
var arr = new Uint8Array(buf);
// Initialising element at zeroth
// position of array with 5
arr[0] = 5;
// Displaying the SharedArrayBuffer
console.log(Atomics.load(arr, 0));
// Displaying the return value of the
// Atomics.and() method
console.log(Atomics.and(arr, 0, 9));
// Displaying the updated SharedArrayBuffer
console.log(Atomics.load(arr, 0));
</script>
輸出:
5 1 1
程序2:
<script type="text/javascript">
// creating a SharedArrayBuffer
var buf = new SharedArrayBuffer(25);
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.and() method
console.log(Atomics.and(arr, 0, 2));
// Displaying the updated SharedArrayBuffer
console.log(Atomics.load(arr, 0));
</script>
輸出:
7 2 2
應用:
每當我們想對任意值進行按位AND運算並想要返回計算出的值時,我們就在JavaScript中使用Atomics.and()操作。
讓我們看一個JavaScript程序:
<script type="text/javascript">
// creating a SharedArrayBuffer
var mybuffer = new SharedArrayBuffer(25);
var myarray = new Uint8Array(mybuffer);
// Initialising the element at zeroth
// position of array with 11
myarray[0] = 11;
// Displaying the return value of the
// Atomics.and() method
console.log(Atomics.and(myarray, 0, 13));
// Displaying the updated SharedArrayBuffer
console.log(Atomics.load(myarray, 0));
</script>
輸出:
9 9
異常:
- 如果typedArray不是允許的整數類型之一,則Atomics.and()操作將引發TypeError。
- 如果typedArray不是共享類型數組,則Atomics.and()操作將引發TypeError。
- 如果用作Atomics.and()操作的參數的索引超出了typedArray的範圍,則Atomics.store()操作將引發RangeError。
注:本文由純淨天空篩選整理自akash1295大神的英文原創作品 Atomics.and() In JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。