在Go语言中,原子包提供较低级别的原子内存,这对实现同步算法很有帮助。 Go语言中的CompareAndSwapInt32()函数用于对int32值执行比较和交换操作。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。
用法:
func CompareAndSwapInt32(addr *int32, old, new int32) (swapped bool)
在这里,addr表示地址,old表示int32值,它是从交换操作返回的旧交换值,new表示int32新值,它将与旧交换值进行交换。
注意:(* int32)是指向int32值的指针。并且int32是位大小32的整数类型。此外,int32包含从-2147483648到2147483647的所有带符号的32位整数的集合。
返回值:如果交换完成,则返回true,否则返回false。
范例1:
// Golang Program to illustrate the usage of
// CompareAndSwapInt32 function
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Assigning variable values to the int32
var (
i int32 = 111
)
// Swapping
var old_value = atomic.SwapInt32(&i, 498)
// Printing old value and swapped value
fmt.Println("Swapped:", i, ", old value:", old_value)
// Calling CompareAndSwapInt32 method with its parameters
Swap:= atomic.CompareAndSwapInt32(&i, 498, 675)
// Displays true if swapped else false
fmt.Println(Swap)
fmt.Println("The Value of i is:",i)
}
输出:
Swapped:498 , old value:111 true The Value of i is: 675
范例2:
// Golang Program to illustrate the usage of
// CompareAndSwapInt32 function
// Including main package
package main
// importing fmt and sync/atomic
import (
"fmt"
"sync/atomic"
)
// Main function
func main() {
// Assigning variable values to the int32
var (
i int32 = 111
)
// Swapping
var old_value = atomic.SwapInt32(&i, 498)
// Printing old value and swapped value
fmt.Println("Swapped:", i, ", old value:", old_value)
// Calling CompareAndSwapInt32
// method with its parameters
Swap:= atomic.CompareAndSwapInt32(&i, 111, 675)
// Displays true if
// swapped else false
fmt.Println(Swap)
fmt.Println("The Value of i is:",i)
}
输出:
Swapped:498 , old value:111 false The Value of i is: 498
在这里,CompareAndSwapInt32方法中的旧值必须是SwapInt32方法返回的交换值。此处不执行交换,因此返回false。
相关用法
- 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.CompareAndSwapInt32() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。