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


Golang atomic.CompareAndSwapUint32()用法及代码示例


在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的CompareAndSwapUint32()函数用于对uint32值执行比较和交换操作。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。

用法:

func CompareAndSwapUint32(addr *uint32, old, new uint32) (swapped bool)

在这里,addr表示地址,old表示uint32值,它是旧的,而new表示uint32新值,它将与旧值交换自身。

注意:(* uint32)是指向uint32值的指针。 uint32是位大小为32的整数类型。此外,int32包含从0到4294967295的所有无符号32位整数的集合。

返回值:如果交换完成,则返回true,否则返回false。



范例1:

// Golang Program to illustrate the usage of 
// CompareAndSwapUint32 function 
  
// Including main package 
package main 
  
// importing fmt and sync/atomic 
import ( 
    "fmt"
    "sync/atomic"
) 
  
// Main function 
func main() { 
  
    // Assigning variable values to the uint32 
    var ( 
        i uint32 = 34764 
    ) 
  
    // Calling CompareAndSwapUint32  
    // method with its parameters 
    Swap:= atomic.CompareAndSwapUint32(&i, 34764, 67576) 
  
    // Displays true if swapped else false 
    fmt.Println(Swap) 
    fmt.Println("The value of i is:",i) 
}

输出:

true
The value of i is: 67576

范例2:

// Golang Program to illustrate the usage of 
// CompareAndSwapUint32 function 
  
// Including main package 
package main 
  
// importing fmt and sync/atomic 
import ( 
    "fmt"
    "sync/atomic"
) 
  
// Main function 
func main() { 
  
    // Assigning variable values to the uint32 
    var ( 
        i uint32 = 54325 
    ) 
  
    // Swapping operation 
    var oldvalue = atomic.SwapUint32(&i, 7687) 
  
    // Printing old value and swapped value 
    fmt.Println("Swapped_value:", i, ", old_value:", oldvalue) 
  
    // Calling CompareAndSwapUint32 method with its parameters 
    Swap:= atomic.CompareAndSwapUint32(&i, 54325, 677876) 
  
    // Displays true if swapped else false 
    fmt.Println(Swap) 
    fmt.Println("The value of i is:",i) 
}

输出:

Swapped_value:7687 , old_value:54325
false
The value of i is: 7687

在此,从交换操作获得的交换值必须是旧值,这就是返回false的原因。




相关用法


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