在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的StoreInt32()函数用于将val原子存储到* addr中。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。
用法:
func StoreInt32(addr *int32, val int32)
在此,addr表示地址。
注意:(* int32)是指向int32值的指针。但是,int32包含从-2147483648到2147483647的所有带符号的32位整数的集合。
返回值:它将val存储到* addr中,然后在需要时可以返回。
范例1:
// Program to illustrate the usage of
// StoreInt32 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 int32
y int32
)
// Using StoreInt32 method
// with its parameters
atomic.StoreInt32(&x, 65)
atomic.StoreInt32(&y, 3455)
// Displays the value stored in addr
fmt.Println(atomic.LoadInt32(&x))
fmt.Println(atomic.LoadInt32(&y))
}
输出:
65 3455
在这里,首先,将int32值存储在定义的地址中,然后使用上述LoadInt32()方法将其返回。
范例2:
// Program to illustrate the usage of
// StoreInt32 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 int32
)
// Using StoreInt32 method
// with its parameters
atomic.StoreInt32(&x, 8943)
// Loading the stored val
z:= atomic.LoadInt32(&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 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.StoreInt32() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。