當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Golang atomic.AddInt64()用法及代碼示例


在Go語言中,原子包提供lower-level原子內存,這對實現同步算法很有幫助。 Go語言的AddInt64()函數用於將增量自動添加到* addr。此函數在原子包下定義。在這裏,您需要導入“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

在上麵的示例中,我們定義了一個add函數,該函數返回調用AddInt64方法返回的輸出。在主函數中,我們定義了一個“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.



相關用法


注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 atomic.AddInt64() Function in Golang With Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。