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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。