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


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


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

用法:

func AddUint32(addr *uint32, delta uint32) (new uint32)

在此,addr表示地址,而delta表示少量大于零的位。此外,如果要从x减去带符号的正常数值c,则可以通过AddUint32(&x ;,^uint32(c-1))来实现。而且,如果要特别减小x,则可以通过AddUint32(&x ;,^uint32(0))完成。

注意:(* uint32)是指向uint32值的指针。 uint32是位大小为32的无符号整数类型。此外,uint32包含从0到4294967295的所有无符号32位整数的集合。

返回值:它自动添加addr和delta并返回一个新值。



范例1:

// Golang Program to illustrate the usage 
// of AddUint32 function 
  
// Including main package 
package main 
  
// importing fmt and sync/atomic 
import ( 
    "fmt"
    "sync/atomic"
) 
  
// Main function 
func main() { 
  
    // Assigning values to the uint32 
    var ( 
        i uint32 = 45 
        j uint32 = 67 
        k uint32 = 4294967295 
        l uint32 = 0 
        z int    = 5 
    ) 
  
    // Assigning constant  
    // values to uint32 
    const ( 
        x uint32 = 6 
        y uint32 = 3 
    ) 
  
    // Calling AddUint32 method 
    // with its parameters 
    a_1:= atomic.AddUint32(&i, -uint32(z)) 
    a_2:= atomic.AddUint32(&j, ^(y - 1)) 
    a_3:= atomic.AddUint32(&k, x-1) 
    a_4:= atomic.AddUint32(&l, ^uint32(z-1)) 
  
    // Displays the output after adding 
    // addr and delta automically 
    fmt.Println(a_1) 
    fmt.Println(a_2) 
    fmt.Println(a_3) 
    fmt.Println(a_4) 
}

输出:

40
64
4
4294967291

范例2:

// Golang program to illustrate the usage 
// of the AddUint32 function 
  
// Including main package 
package main 
  
// importing fmt and sync/atomic 
import ( 
    "fmt"
    "sync/atomic"
) 
  
// Defining addr of type uint32 
type addr uint32 
  
// function that adds addr and delta 
func (u *addr) add() uint32 { 
  
    // Calling AddUint32() function 
    // with its parameter 
    return atomic.AddUint32((*uint32)(u), 4) 
} 
  
// Main function 
func main() { 
  
    // Defining u 
    var u addr 
  
    // For loop to increment the value of u 
    for i:= 0; i < 17; i += 2 { 
  
        // Displays the new value 
        // after adding delta and addr 
        fmt.Println(u.add()) 
    } 
}

输出:

4
8
12
16
20
24
28
32
36

在上面的示例中,我们定义了一个函数add,该函数返回从调用AddUint32方法返回的输出。在主函数中,我们定义了一个“for”循环,该循环将在每个调用中增加‘u’的值。在这里,AddUint32()方法的第二个参数是恒定的,只有第一个参数的值是可变的。但是,上一个调用的输出将是下一个调用中AddUint32()方法的第一个参数的值,直到循环停止。

让我们看看上面的示例如何工作:

1st parameter = 0, 2nd parameter = 4  // returns (0 + 4 = 4)

// Now, the above output is 1st parameter in next call to AddUint32() method
1st parameter = 4, 2nd parameter = 4   // returns (4 + 4 = 8)
1st parameter = 8, 2nd parameter = 4   // returns (8 + 4 = 12) and so on.



相关用法


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