在Go语言中,原子包提供较低级别的原子内存,这对实现同步算法很有帮助。 Go语言中的LoadPointer()函数用于原子加载* addr。此函数在原子包下定义。在这里,您需要导入“sync/atomic”和“unsafe”软件包才能使用这些函数。
用法:
func LoadPointer(addr *unsafe.Pointer) (val unsafe.Pointer)
在此,addr表示地址。
注意:(* unsafe.Pointer)是指向unsafe.Pointer值的指针。而且unsafe.Pointer类型有助于启用任意类型和内置uintptr类型之间的转换。此外,不安全是有助于Go程序的类型安全的软件包。
返回值:它会自动加载* addr并返回unsafe.Pointer。
范例1:
// Program to illustrate the usage of
// LoadPointer 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))
// Calling LoadPointer() method
px1:= (*L)(atomic.LoadPointer(unsafepL))
// Returns true if *addr is
// loaded else returns false
fmt.Println(px1 == &px)
// Prints unsafe.Pointer
fmt.Println(&px1)
}
输出:
true 0xc0000b8018 // Can be different at different run times
在这里,StorePointer方法将值添加到* addr,然后LoadPointer方法自动加载* addr。因此,这里的加载完成了,因此返回true,并且不安全的值。这里返回的Pointer在不同的运行时间可能会有所不同。
范例2:
// Program to illustrate the usage of
// LoadPointer 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 LoadPointer() method
px1:= (*L)(atomic.LoadPointer(unsafepL))
// Returns true if *addr is
// loaded else returns false
fmt.Println(px1 == &px)
// Prints unsafe.Pointer
fmt.Println(&px1)
}
输出:
false 0xc00000e028 // A random value is returned in each run
在这里,返回false,因为在此之前不存储unsafe.pointer,因此LoadPointer()方法无法加载* addr。此外,此处返回的地址值为px1的地址。
相关用法
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
- Golang time.Round()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang flag.Bool()用法及代码示例
- Golang time.Sleep()用法及代码示例
- Golang time.Time.Year()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 atomic.LoadPointer() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。