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


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


在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的LoadInt32()函数用于原子加载* addr。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。

用法:

func LoadInt32(addr *int32) (val int32)

在此,addr表示地址。

注意:(* int32)是指向int32值的指针。但是,int32包含从-2147483648到2147483647的所有带符号的32位整数的集合。

返回值:它返回加载到地址的值。



范例1:

// Program to illustrate the usage of 
// LoadInt32 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 int32 
    var ( 
        i int32 = 57567 
        j int32 = -842 
        k int32 = 17 
        l int32 = 3455 
    ) 
  
    // Calling LoadInt32 method 
    // with its parameters 
    load_1:= atomic.LoadInt32(&i) 
    load_2:= atomic.LoadInt32(&j) 
    load_3:= atomic.LoadInt32(&k) 
    load_4:= atomic.LoadInt32(&l) 
  
    // Displays the int32 value  
    // loaded in the *addr 
    fmt.Println(load_1) 
    fmt.Println(load_2) 
    fmt.Println(load_3) 
    fmt.Println(load_4) 
}

输出:

57567
-842
17
3455

范例2:

// Program to illustrate the usage of 
// LoadInt32 function in Golang 
  
// Including main package 
package main 
  
// Importing fmt and sync/atomic 
import ( 
    "fmt"
    "sync/atomic"
) 
  
// Main function 
func main() { 
  
    // Declaring x 
    var x int32 
  
    // For loop 
    for i:= 1; i < 789; i += 2 { 
  
        // Function with AddInt32 method 
        go func() { 
            atomic.AddInt32(&x, 4) 
        }() 
    } 
  
    // Prints loaded values address 
    fmt.Println(atomic.LoadInt32(&x)) 
}

输出:

1416   // A random value is returned in each run

在上面的示例中,每次调用都会从AddInt32()方法返回新值,直到循环停止为止,LoadInt32()方法将加载这些新的int32值。而且这些值存储在不同的地址中,该地址可以是随机的,因此,每次运行中LoadInt32()方法的输出都是不同的。因此,这里在输出中返回一个随机值。




相关用法


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