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

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

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

句法:

func StoreUintptr(addr *uintptr, val uintptr)

这里, addr表示地址。

注意: (*uintptr) 是指向 uintptr 值的指针。并且 uintptr 是一个整数类型,它太大而无法容纳任何指针的位模式。

返回值:将 val 存储到*addr 中,然后可以在需要时返回。

示例 1:

// Program to illustrate the usage of
// StoreUintptr function in Golang
  
// Including main package
package main
  
// importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Defining variables for 
    // the address to store the val
    var (
        x uintptr
        y uintptr
    )
  
    // Using StoreUintptr method
    // with its parameters
    atomic.StoreUintptr(&x, 444443)
    atomic.StoreUintptr(&y, 223)
  
    // Displays the value stored in addr
    fmt.Println(atomic.LoadUintptr(&x))
    fmt.Println(atomic.LoadUintptr(&y))
}

输出:

444443
223

在这里,首先,uintptr 值存储在定义的地址中,然后使用上面的 LoadUintptr() 方法返回它们。

示例 2:

// Program to illustrate the usage of
// StoreUintptr function in Golang
  
// Including main package
package main
  
// importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Defining variables for 
    // the address to store the val
    var (
        x uintptr
    )
  
    // Using StoreUintptr method
    // with its parameters
    atomic.StoreUintptr(&x, 5255151111)
  
    // Loading the stored val
    z := atomic.LoadUintptr(&x)
  
    // Prints true if values
    // are same else false
    fmt.Println(z == x)
  
    // Prints true if addresses 
    // are same else false
    fmt.Println(&z == &x)
}

输出:

true
false

在这里,存储和加载的值相同,因此返回 true 但它们的地址不同,因此在这种情况下返回 false。