在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的AddUintptr()函数用于自动将增量添加到* addr。此函数在原子包下定义。在这里,您需要导入“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
在上面的示例中,我们定义了一个add函数,该函数返回调用AddUintptr方法返回的输出。在主函数中,我们定义了一个“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
相关用法
- 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.AddUintptr() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。