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

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

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

句法:

func AddInt64(addr *int64, delta int64) (new int64)

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

注意: (*int64) 是指向 int64 值的指针。此外,int64 包含从 -9223372036854775808 到 9223372036854775807 的所有有符号 64 位整数的集合。

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

示例 1:

// Golang program to illustrate the usage of
// AddInt64 function
  
// Including main package
package main
  
// importing fmt and sync/atomic
import (
    "fmt"
    "sync/atomic"
)
  
// Main function
func main() {
  
    // Assigning values 
    // to the int64
    var (
        s int64 = 67656
        t int64 = 90
        u int64 = 922337203685477580
        v int64 = -9223372036854775807
    )
  
    // Assigning constant
    // values to int64
    const (
        w int64 = 5
        x int64 = 8
    )
  
    // Calling AddInt64 method 
    // with its parameters
    output_1 := atomic.AddInt64(&s, w)
    output_2 := atomic.AddInt64(&t, x-w)
    output_3 := atomic.AddInt64(&u, x-6)
    output_4 := atomic.AddInt64(&v, -x)
  
    // Displays the output after adding
    // addr and delta automically
    fmt.Println(output_1)
    fmt.Println(output_2)
    fmt.Println(output_3)
    fmt.Println(output_4)
}

输出:

67661
93
922337203685477582
9223372036854775801

示例 2:

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

输出:

9
18
27
36
45
54

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

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

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

// Now, the above output is 1st parameter in next call to AddInt64() method
1st parameter = 9, 2nd parameter = 9   // returns (9 + 9 = 18)
1st parameter = 18, 2nd parameter = 9   // returns (18 + 9 = 27) and so on.