在Go語言中,原子包提供lower-level原子內存,這對實現同步算法很有幫助。 Go語言中的StoreInt64()函數用於將val原子存儲到* addr中。此函數在原子包下定義。在這裏,您需要導入“sync/atomic”軟件包才能使用這些函數。
用法:
func StoreInt64(addr *int64, val int64)
在此,addr表示地址。
注意:(* int64)是指向int64值的指針。但是,int64包含從-9223372036854775808到9223372036854775807的所有帶符號的64位整數的集合。
返回值:它將val存儲到* addr中,然後在需要時可以返回。
範例1:
// Program to illustrate the usage of
// StoreInt64 function in Golang
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Defining variables for
// the address to store the val
var (
x int64
y int64
)
// Using StoreInt64 method
// with its parameters
atomic.StoreInt64(&x, 6777676777)
atomic.StoreInt64(&y, 98877)
// Displays the value stored in addr
fmt.Println(atomic.LoadInt64(&x))
fmt.Println(atomic.LoadInt64(&y))
}
輸出:
6777676777 98877
在這裏,首先,將int64值存儲在定義的地址中,然後使用上麵的LoadInt64()方法將它們返回。
範例2:
// Program to illustrate the usage of
// StoreInt64 function in Golang
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Defining variables for the
// address to store the val
var (
x int64
)
// Using StoreInt64 method
// with its parameters
atomic.StoreInt64(&x, 3654567899788)
// Loading the stored val
z:= atomic.LoadInt64(&x)
// Prints true if values
// are same else false
fmt.Println(z == x)
// Prints true if addresses
// are same else false
fmt.Println(&z == &x)
}
輸出:
true false
此處,存儲和加載的值相同,因此返回true,但其地址不同,因此在這種情況下返回false。
相關用法
- Golang math.Lgamma()用法及代碼示例
- Golang math.Float64bits()用法及代碼示例
- Golang atomic.AddInt64()用法及代碼示例
- 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()用法及代碼示例
- Golang strings.ContainsRune()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 atomic.StoreInt64() Function in Golang With Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。