📌  相关文章
📜  Golang 中的 atomic.AddUintptr()函数示例

📅  最后修改于: 2021-10-24 14:19:50             🧑  作者: Mango

在 Go 语言中,原子包提供较低级别的原子内存,这有助于实现同步算法。 Go 语言中的AddUintptr()函数用于自动将delta添加到*addr 。这个函数是在 atomic 包下定义的。在这里,您需要导入“sync/atomic”包才能使用这些功能。

句法:

func AddUintptr(addr *uintptr, delta uintptr) (new uintptr)

此处, addr表示地址,delta 表示大于零的少量位。

注意: (*uintptr) 是指向uintptr值的指针。而uintptr是一个足够大的整数类型,可以容纳任何指针的位模式。

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

示例 1:

// Golang Program to illustrate the usage of
// AddUintptr function
  
// Including main package
package main
  
// importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Assigning variable
    // values to the uintptr
    var (
        w uintptr = 0
        x uintptr = 255
        y uintptr = 564688
        z uintptr = 656757686877
    )
  
    // Assigning constant 
    // values to uintptr
    const (
        m uintptr = 78
        n uintptr = 96
    )
  
    // Calling AddUintptr method
    // with its parameters
    p_1 := atomic.AddUintptr(&x, (m))
    p_2 := atomic.AddUintptr(&y, ^(n - 1))
    p_3 := atomic.AddUintptr(&z, (2))
    p_4 := atomic.AddUintptr(&w, (n - m))
  
    // Displays the output after adding
    // addr and delta automically
    fmt.Println(p_1)
    fmt.Println(p_2)
    fmt.Println(p_3)
    fmt.Println(p_4)
}

输出:

333
564592
656757686879
18

示例 2:

// Golang Program to illustrate the usage of
// AddUintptr function
  
// Including main package
package main
  
// importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Defining addr of type uintptr
type addr uintptr
  
// function that adds addr and delta
func (p *addr) adds() uintptr {
  
    // Calling AddUintptr() 
    // function with its
    // parameter
    return atomic.AddUintptr((*uintptr)(p), 32686776785)
}
  
// Main function
func main() {
  
    // Defining p
    var p addr
  
    // For loop to increment 
    // the value of p
    for i := 4; i < 1000; i *= 5 {
  
        // Displays the new value after
        // adding delta and addr
        fmt.Println(p.adds())
    }
}

输出:

32686776785
65373553570
98060330355
130747107140

在上面的例子中,我们已经定义了一个函数返回其从主叫AddUintptr方法返回的输出。在 main函数,我们定义了一个“for”循环,它将在每次调用中增加 ‘p’ 的值。这里,AddUintptr() 方法的第二个参数是常数,只有第一个参数的值是可变的。但是,上一次调用的输出将是下一次调用中 AddUintptr() 方法的第一个参数的值,直到循环停止。

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

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

// Now, the above output is 1st parameter 
// in next call to AddUintptr() method
// It returns (32686776785 + 32686776785 = 65373553570)
1st parameter = 32686776785, 2nd parameter = 32686776785 

// returns (65373553570 + 32686776785 = 130747107140) and so on  
1st parameter = 65373553570, 2nd parameter = 32686776785