在Go语言中,原子包提供较低级别的原子内存,这对实现同步算法很有帮助。 Go语言中的AddUint64()函数用于自动将增量添加到* addr。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。
用法:
func AddUint64(addr *uint64, delta uint64) (new uint64)
在此,addr表示地址,而delta表示少量大于零的位。此外,如果要从x减去带符号的正常数值c,则可以通过AddUint64(&x ;,^uint64(c-1))来实现。而且,如果要特别减少x,则可以通过AddUint64(&x ;,^uint64(0))来完成。
注意:(* uint64)是指向uint64值的指针。此外,uint64包含从0到18446744073709551615的所有无符号64位整数的集合。
返回值:它自动添加addr和delta并返回一个新值。
范例1:
// Golang Program to illustrate the usage
// of AddUint64 function
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Assigning variable
// values to the uint64
var (
i uint64 = 453
j uint64 = 167
k uint64 = 18446744073709551615
l uint64 = 0
z int = 15
)
// Assigning constant values to uint64
const (
x uint64 = 7
y uint64 = 12
)
// Calling AddUint64 method
// with its parameters
a_1:= atomic.AddUint64(&i, -uint64(z))
a_2:= atomic.AddUint64(&j, ^(y - 1))
a_3:= atomic.AddUint64(&k, x-1)
a_4:= atomic.AddUint64(&l, ^uint64(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)
}
输出:
438 155 5 18446744073709551601
范例2:
// Golang Program to illustrate the usage
// of AddUint64 function
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Defining addr of type uint64
type addr uint64
// function that adds addr and delta
func (u *addr) adds() uint64 {
// Calling AddUint64()
// function with its
// parameter
return atomic.AddUint64((*uint64)(u), 325)
}
// Main function
func main() {
// Defining u
var u addr
// For loop to increment
// the value of u
for i:= 1; i < 11; i *= 3 {
// Displays the new value after
// adding delta and addr
fmt.Println(u.adds())
}
}
输出:
325 650 975
在上面的示例中,我们定义了一个add函数,该函数返回调用AddUint64方法返回的输出。在主函数中,我们定义了一个“for”循环,该循环将在每个调用中增加‘u’的值。在这里,AddUint64()方法的第二个参数是恒定的,只有第一个参数的值是可变的。但是,上一个调用的输出将是下一个调用中AddUint64()方法的第一个参数的值,直到循环停止。
让我们看看上面的示例如何工作:
1st parameter = 0, 2nd parameter = 325 // returns (0 + 325 = 325) // Now, the above output is 1st parameter in next call to AddUint64() method 1st parameter = 325, 2nd parameter = 325 // returns (325 + 325 = 650) 1st parameter = 650, 2nd parameter = 325 // returns (650 + 325 = 975)
相关用法
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
- Golang time.Round()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang flag.Bool()用法及代码示例
- Golang time.Sleep()用法及代码示例
- Golang time.Time.Year()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 atomic.AddUint64() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。