在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的Load()函数用于检查由Store方法存储的最新值的值集。此外,如果尚未对此Value进行对Store方法的调用,它也可以返回nil。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。
用法:
func (v *Value) Load() (x interface{})
在这里,v是任何类型的值,x是接口,它是Load以及Store方法的输出结果类型。
注意:(* Value)是指向Value类型的指针。同步/原子标准包中提供的值类型用于原子加载和存储任何类型的值。
返回值:它返回由store方法存储的值集。如果未调用store方法,也可以返回nil。
范例1:
// Program to illustrate the usage of
// Load function in Golang
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Defining a struct type L
type L struct{ x, y, z int }
// Defining a variable to assign
// values to the struct type L
var r1 = L{9, 10, 11}
// Defining Value type to store
// values of any type
var V atomic.Value
// Calling Store function
V.Store(r1)
// Calling Load method
var r2 = V.Load().(L)
// Prints values as
// stored by recent
// store method
fmt.Println(r2)
// Displays true if satisfied
fmt.Println(r1 == r2)
}
输出:
{9 10 11} true
在上面的示例中,我们使用了值类型来存储任何类型的值。这些值存储在所声明的接口r1处。但是,可以使用Load方法返回这些值。
范例2:
// Program to illustrate the usage of
// Load function in Golang
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Defining a struct type L
type L struct{ x, y, z int }
// Defining a variable to assign
// values to the struct type L
var r1 = L{9, 10, 11}
// Defining Value type to store
// values of any type
var V atomic.Value
// Calling Load method
var r2 = V.Load().(L)
// Prints values as
// stored by recent
// store method
fmt.Println(r2)
// Displays true if satisfied
fmt.Println(r1 == r2)
}
输出:
panic:interface conversion:interface {} is nil, not main.L goroutine 1 [running]: main.main() /tmp/sandbox731326366/prog.go:28 +0x240
在这里,没有调用store方法,因此返回nil。
相关用法
- 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.Load() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。