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


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


在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的StorePointer()函数用于将val原子存储到* addr中。此函数在原子包下定义。在这里,您需要导入“sync/atomic”包才能使用这些函数。

用法:

func StorePointer(addr *unsafe.Pointer, val unsafe.Pointer)

在此,addr表示地址。

注意:(* unsafe.Pointer)是指向unsafe.Pointer值的指针。而且unsafe.Pointer类型有助于启用任意类型和内置uintptr类型之间的转换。此外,不安全是有助于Go程序的类型安全的软件包。

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



范例1:

// Program to illustrate the usage of 
// StorePointer function in Golang 
  
// Including main package 
package main 
  
// importing fmt,  
// sync/atomic and unsafe 
import ( 
    "fmt"
    "sync/atomic"
    "unsafe"
) 
  
// Defining a struct type L 
type L struct{ x, y, z int } 
  
// Declaring pointer  
// to L struct type 
var PL *L 
  
// Calling main 
func main() { 
  
    // Defining *addr unsafe.Pointer 
    var unsafepL = (*unsafe.Pointer)(unsafe.Pointer(&PL)) 
  
    // Defining value  
    // of unsafe.Pointer 
    var px L 
  
    // Calling StorePointer and  
    // storing unsafe.Pointer 
    // value to *addr 
    atomic.StorePointer( 
        unsafepL, unsafe.Pointer(&px)) 
  
    // Printed if value is stored 
    fmt.Println("Val Stored!") 
}

输出:

Val Stored!

在这里,值unsafe.Pointer存储在* addr中,这就是上面的代码返回所述输出的原因。

范例2:

// Program to illustrate the usage of 
// StorePointer function in Golang 
  
// Including main package 
package main 
  
// importing fmt,  
// sync/atomic and unsafe 
import ( 
    "fmt"
    "sync/atomic"
    "unsafe"
) 
  
// Defining a struct type L 
type L struct{ x, y, z int } 
  
// Declaring pointer to L struct type 
var PL *L 
  
// Calling main 
func main() { 
  
    // Defining *addr unsafe.Pointer 
    var unsafepL = (*unsafe.Pointer)(unsafe.Pointer(&PL)) 
  
    // Defining value  
    // of unsafe.Pointer 
    var px = 54634763 
  
    // Calling StorePointer and 
    // storing unsafe.Pointer 
    // value to *addr 
    atomic.StorePointer( 
        unsafepL, unsafe.Pointer(&px)) 
  
    // Prints the value of the 
    // address where val is stored 
    fmt.Println(&px) 
}

输出:

0xc0000b6010  // Can be different at different run times

在此,存储了所声明的unsafe.Pointer val,并在此返回所存储的val的地址。此外,地址在不同的运行时间可以不同。




相关用法


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