当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang atomic.Store()用法及代码示例


在Go语言中,原子包提供较低级别的原子内存,这对实现同步算法很有帮助。 Go语言中的Store()函数用于将Value的值设置为x(即interface)。并且所有对Store方法的调用都必须使用相同具体类型的值来实现。此外,矛盾类型的商店将引起恐慌。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。

用法:

func (v *Value) Store(x interface{})

这里,v是任何类型的值,x是接口,它是Store方法的输出结果类型。

注意:(* Value)是指向Value类型的指针。同步/原子标准包中提供的值类型用于原子存储和加载任何类型的值。

返回值:它存储提供的值,并可以在需要时加载。



范例1:

// Program to illustrate the usage of 
// Store 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) 
  
    // Printed if the value stated is stored 
    fmt.Println("Any type of value is stored!") 
}

输出:

Any type of value is stored!

在上面的示例中,我们使用了值类型来存储任何类型的值。这些值存储在所声明的接口r1处。

范例2:

// Program to illustrate the usage of 
// Store function in Golang 
  
// Including main package 
package main 
  
// importing fmt and sync/atomic 
import ( 
    "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) 
  
    // Storing value of  
    // different concrete type 
    V.Store("GeeksforGeeks") 
}

输出:

panic:sync/atomic:store of inconsistently typed value into Value

goroutine 1 [running]:
sync/atomic.(*Value).Store(0x40c018, 0x99a40, 0xb23e8, 0x40e010)
    /usr/local/go/src/sync/atomic/value.go:77 +0x160
main.main()
    /tmp/sandbox206117237/prog.go:31 +0xc0

这里,上面存储的值具有不同的具体类型,因此称为恐慌。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 atomic.Store() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。