在Go语言中,原子包提供较低级别的原子内存,这对实现同步算法很有帮助。 Go语言中的LoadUint64()函数用于原子加载* addr。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。
用法:
func LoadUint64(addr *uint64) (val uint64)
在此,addr表示地址。
注意:(* uint64)是指向uint64值的指针。但是,uint64包含从0到18446744073709551615的所有无符号64位整数的集合。
返回值:它返回加载到* addr的值。
范例1:
// Program to illustrate the usage of
// LoadUint64 function in Golang
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Assigning values to the uint64
var (
i uint64 = 587786787
j uint64 = 9
k uint64 = 78678844556666
l uint64 = 3446
)
// Calling LoadUint64 method
// with its parameters
load_1:= atomic.LoadUint64(&i)
load_2:= atomic.LoadUint64(&j)
load_3:= atomic.LoadUint64(&k)
load_4:= atomic.LoadUint64(&l)
// Displays the uint64 value
// loaded in the *addr
fmt.Println(load_1)
fmt.Println(load_2)
fmt.Println(load_3)
fmt.Println(load_4)
}
输出:
587786787 9 78678844556666 3446
范例2:
// Program to illustrate the usage of
// LoadUint64 function in Golang
// Including main package
package main
// Importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Declaring u
var u uint64
// For loop
for i:= 4; i < 200; i += 1 {
// Function with AddUint64 method
go func() {
atomic.AddUint64(&u, 6)
}()
}
// Prints loaded values address
fmt.Println(atomic.LoadUint64(&u))
}
输出:
1068 // A random value is returned in each run
在上面的示例中,每次调用都会从AddUint64()方法返回新值,直到循环停止为止,LoadUint64()方法将加载这些新uint64值。而且这些值存储在不同的地址中,该地址可以是随机的,因此,每次运行中LoadUint32()方法的输出都是不同的。因此,这里在输出中返回一个随机值。
相关用法
- 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.LoadUint64() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。