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


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


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

用法:

func CompareAndSwapUint64(addr *uint64, old, new uint64) (swapped bool)

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

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

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



范例1:

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

输出:

true
The new value of i is: 575765878

范例2:

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

输出:

Swapped_value:4676778904 , old_value:143255757
false
The value of i is: 4676778904

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




相关用法


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