📌  相关文章
📜  Golang 中的 atomic.CompareAndSwapInt64()函数示例

📅  最后修改于: 2021-10-24 12:58:13             🧑  作者: Mango

在 Go 语言中,原子包提供较低级别的原子内存,这有助于实现同步算法。 Go语言的CompareAndSwapInt64()函数用于对int64值进行比较和交换操作。这个函数是在 atomic 包下定义的。在这里,您需要导入“sync/atomic”包才能使用这些功能。

句法:

func CompareAndSwapInt64(addr *int64, old, new int64) (swapped bool)

这里, addr表示地址, old表示 int64 值,即从交换操作返回的旧交换值, new是将从旧交换值交换自身的 int64 新值。

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

返回值:如果交换完成则返回真,否则返回假。

下面的例子说明了上述方法的使用:

示例 1:

// Golang Program to illustrate the usage of
// CompareAndSwapInt64 function
  
// Including main package
package main
  
// importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Assigning variable values to the int64
    var (
        i int64 = 686788787
    )
  
    // Swapping
    var old_value = atomic.SwapInt64(&i, 56677)
  
    // Printing old value and swapped value
    fmt.Println("Swapped:", i, ", old value:", old_value)
  
    // Calling CompareAndSwapInt64 
    // method with its parameters
    Swap := atomic.CompareAndSwapInt64(&i, 56677, 908998)
  
    // Displays true if swapped else false
    fmt.Println(Swap)
    fmt.Println("The Value of i is: ",i)
}

输出:

Swapped: 56677 , old value: 686788787
true
The Value of i is:  908998

示例 2:

// Golang Program to illustrate the usage of
// CompareAndSwapInt64 function
  
// Including main package
package main
  
// importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Assigning variable values to the int64
    var (
        i int64 = 686788787
    )
  
    // Swapping
    var old_value = atomic.SwapInt64(&i, 56677)
  
    // Printing old value and swapped value
    fmt.Println("Swapped:", i, ", old value:", old_value)
  
    // Calling CompareAndSwapInt64 
    // method with its parameters
    Swap := atomic.CompareAndSwapInt64(&i, 686788787, 908998)
  
    // Displays true if swapped else false
    fmt.Println(Swap)
    fmt.Println(i)
}

输出:

Swapped: 56677, old value: 686788787
false
56677

这里, CompareAndSwapInt64方法中的旧值必须是从SwapInt64方法返回的交换值。此处不执行交换,因此返回 false。