在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的SwapUint64()函数用于将新值原子存储到* addr中,并返回先前的* addr值。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。
用法:
func SwapUint64(addr *uint64, new uint64) (old uint64)
在此,addr表示地址。而new是新的uint64值,而old是旧的uint64值。
注意:(* uint64)是指向uint64值的指针。 uint64是位大小为64的整数类型。但是,uint64包含从0到18446744073709551615的所有无符号64位整数的集合。
返回值:它将新的uint64值存储到* addr中,并返回先前的* addr值。
范例1:
// Program to illustrate the usage of
// SwapUint64 function in Golang
// Including main package
package main
// Importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Assigning value to uint64
var x uint64 = 10864545453
// Using SwapUint64 method
// with its parameters
var old_val = atomic.SwapUint64(&x, 65353443)
// Prints new and old value
fmt.Println("Stored new value:",
x, ", Old value:", old_val)
}
输出:
Stored new value: 65353443, Old value: 10864545453
范例2:
// Program to illustrate the usage of
// SwapUint64 function in Golang
// Including main package
package main
// Importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Assigning value to uint64
var m uint64 = 11735344343
var n uint64 = 976364747
// Using SwapUint64 method
// with its parameters
var oldVal1 = atomic.SwapUint64(&m, 11735344343)
var oldVal2 = atomic.SwapUint64(&n, 6586850111)
// Prints output
fmt.Println((oldVal1) == m)
fmt.Println((oldVal2) == n)
}
输出:
true false
此处,oldVal1等于“m”,因为要存储在* addr中的新值与旧值相同,因此,返回true,但是oldVal2不等于“n”,因为那里的旧值与新分配的值不相似因此,返回false。
相关用法
- 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.SwapUint64() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。