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

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

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

句法:

func CompareAndSwapInt32(addr *int32, old, new int32) (swapped bool)

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

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

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

示例 1:

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

输出:

Swapped: 498 , old value: 111
true
The Value of i is:  675

示例 2:

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

输出:

Swapped: 498 , old value: 111
false
The Value of i is:  498

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