當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Javascript Atomics.isLockFree( )用法及代碼示例


什麽是Atomics?

  • Atomics是JavaScript中的一個對象,提供了作為靜態方法執行原子操作的函數。
  • 就像JavaScript中的Math對象一樣,Atomics的所有屬性和方法也是靜態的。
  • 原子與SharedArrayBuffer(通用固定長度二進製數據緩衝區)對象一起使用。
  • 原子不同於其他全局對象。
  • 原子不能與新運算符一起使用,也不能作為函數調用。

JavaScript中的原子操作
當存在共享內存時,多個線程可以在內存中讀取和寫入相同的數據。為確保準確寫入和讀取預測值,除非當前操作完成,否則其他操作將無法開始。原子操作也不能中斷。

Atomics.isLockFree()方法


    在原子操作中,有一個內置操作Atomics.isLockFree()用於確定是使用鎖還是原子操作。
  • 如果給定大小是整數TypedArray類型的BYTES_PER_ELEMENT屬性之一,則Atomics.isLockFree()操作返回true,否則,Atomics.isLockFree()操作返回false。
  • 無鎖元件可以在不需要鎖的情況下進行操作,並且用戶不需要提供自己的鎖緊機構。

整數TypedArray的BYTES_PER_ELEMENT屬性是什麽?

  • TypedArray.BYTES_PER_ELEMENT屬性表示類型化數組中每個元素的大小(以字節為單位)。
  • 由於TypedArray對象在每個元素的字節數以及字節的解釋方式上彼此不同。
  • BYTES_PER_ELEMENT常數包含給定TypedArray中每個元素具有的字節數。

應用範圍:

  • Atomics.isLockFree()用於檢查操作是否為無鎖。
  • 可用於驗證整數TypedArray的BYTES_PER_ELEMENT屬性。

用法:

Atomics.isLockFree(size)

Parameters Used:
size : It is the size in bytes to check

返回值:
Atomics.isLockFree() returns either Boolean true indicating the operation is lock free or it returns false.

下麵提供了上述函數的示例

Input : Atomics.isLockFree(5)
Output : false

說明:在此示例中,“5”作為參數發送到Atomics.isLockFree()方法,並且由於“5”不是BYTES_PER_ELEMENT值之一,它返回false。

Input : Atomics.isLockFree(6)
Output : false

說明:在此示例中,“6”作為參數發送到Atomics.isLockFree()方法,並且由於“6”不是BYTES_PER_ELEMENT值之一,它返回false。

Input : Atomics.isLockFree(2)
Output : true

說明:在此示例中,“2”作為參數發送到Atomics.isLockFree()方法,由於“2”是BYTES_PER_ELEMENT值之一,因此它返回true。


Input : Atomics.isLockFree(4)
Output : true

說明:在此示例中,“4”作為參數發送到Atomics.isLockFree()方法,由於“4”是BYTES_PER_ELEMENT值之一,因此它返回true。
下麵提供了上述函數的代碼。

代碼1:

<script> 
// Displaying the return value of the  
// Atomics.isLockFree() method  
console.log(Atomics.isLockFree(5)); 
  
// Atomics.isLockFree() will return false since 
// 5 is not one of the BYTES_PER_ELEMENT values  
</script>

輸出:

false

代碼2:

<script> 
// Displaying the return value of 
// the Atomics.isLockFree() method  
console.log(Atomics.isLockFree(6)); 
  
// Atomics.isLockFree() will return false since 6  
// is not one of the BYTES_PER_ELEMENT values  
</script>

輸出:

false

代碼3:

<script> 
// Displaying the return value 
// of the Atomics.isLockFree() method  
console.log(Atomics.isLockFree(2)); 
  
// Atomics.isLockFree() will return true since  
// 2 is one of the BYTES_PER_ELEMENT values  
</script>

輸出:

true

代碼4:

<script> 
// Displaying the return value of the 
// Atomics.isLockFree() method  
console.log(Atomics.isLockFree(4)); 
  
// Atomics.isLockFree() will return true since 
//  4 is one of the BYTES_PER_ELEMENT values  
</script>

輸出:

true

應用:
每當我們要檢查某個操作是否為lock-free還是要驗證整數TypedArray的BYTES_PER_ELEMENT屬性時,我們都會在JavaScript中使用Atomics.isLockFree()操作。

讓我們看一個JavaScript程序:

<script> 
// Displaying the return value of  
// the Atomics.isLockFree() method  
console.log(Atomics.isLockFree(8)); 
  
// Atomics.isLockFree() will return true since 8  
// is one of the BYTES_PER_ELEMENT(Float64Array) values 
</script>

輸出:

true

異常:

  • 如果typedArray不是允許的整數類型之一,則Atomics.isLockFree()操作將引發TypeError。
  • 如果typedArray不是共享類型數組,則Atomics.isLockFree()操作將引發TypeError。
    • 參考:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/isLockFree




注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 Atomics.isLockFree() In JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。