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

📅  最后修改于: 2021-10-25 02:49:17             🧑  作者: Mango

在 Go 语言中,原子包提供较低级别的原子内存,这有助于实现同步算法。 Go 语言中的SwapUintptr()函数用于将新值原子地存储到*addr 中并返回之前的*addr值。这个函数是在 atomic 包下定义的。在这里,您需要导入“sync/atomic”包才能使用这些功能。

句法:

func SwapUintptr(addr *uintptr, new uintptr) (old uintptr)

这里, addr表示地址。 new 是新的 uintptr 值,old 是旧的 uintptr 值。

注意: (*uintptr) 是指向 uintptr 值的指针。而 uintptr 是一个太大的整数类型,它可以包含任何指针的位模式。

返回值:它将新的 uintptr 值存储到 *addr 中并返回之前的 *addr 值。

示例 1:

// Program to illustrate the usage of
// SwapUintptr function in Golang
  
// Including main package
package main
  
// Importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Assigning value to uintptr
    var x uintptr = 96464646466757
  
    // Using SwapUintptr method 
    // with its parameters
    var old_val = atomic.SwapUintptr(&x,
                            21863567864)
  
    // Prints new and old value
    fmt.Println("Stored new value: ",
         x, ", Old value: ", old_val)
}

输出:

Stored new value:  21863567864, Old value:  96464646466757

示例 2:

// Program to illustrate the usage of
// SwapUintptr function in Golang
  
// Including main package
package main
  
// Importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Assigning value to uintptr
    var m uintptr = 4235564747474
    var n uintptr = 2567891937466
  
    // Using SwapUintptr method with its parameters
    var oldVal1 = atomic.SwapUintptr(&m, 4235564747474)
    var oldVal2 = atomic.SwapUintptr(&n, 7454545419024)
  
    // Prints output
    fmt.Println((oldVal1) == m)
    fmt.Println((oldVal2) == n)
}

输出:

true
false

在这里, oldVal1等于“m”,因为要存储在 *addr 中的新值与旧值相同,因此返回 true 但oldVal2不等于“n”,因为旧值与新分配的值因此返回 false。