在Go语言中,原子包提供lower-level原子内存,这对实现同步算法很有帮助。 Go语言中的CompareAndSwapPointer()函数用于对unsafe.Pointer值执行比较和交换操作。此函数在原子包下定义。在这里,您需要导入“sync/atomic”软件包才能使用这些函数。
用法:
func CompareAndSwapPointer(addr *unsafe.Pointer, old, new unsafe.Pointer) (swapped bool)
在这里,addr表示地址,old表示不安全。Pointer值是从SwapPointer操作返回的旧交换值,而new是unsafe.Pointer的新值,它将与旧交换值交换自身。
注意:(* unsafe.Pointer)是指向unsafe.Pointer值的指针。而且unsafe.Pointer类型有助于启用任意类型和内置uintptr类型之间的转换。此外,不安全是有助于Go程序的类型安全的软件包。
返回值:如果交换完成,则返回true,否则返回false。
范例1:
// Program to illustrate the usage of
// CompareAndSwapPointer function in Golang
// Including main package
package main
// Importing fmt,
// sync/atomic and unsafe
import (
"fmt"
"sync/atomic"
"unsafe"
)
// Defining a struct type P
type P struct{ x, y, z int }
// Declaring pointer
// to P struct type
var pP *P
// Main function
func main() {
// Defining addr unsafe.Pointer
var unsafe1 = (*unsafe.Pointer)(unsafe.Pointer(&pP))
// Old unsafe pointer
var sy P
// Defining new unasfe.pointer
px:= atomic.SwapPointer(
unsafe1, unsafe.Pointer(&sy))
// Calling CompareAndSwapPointer
// method with its parameters
y:= atomic.CompareAndSwapPointer(
unsafe1, unsafe.Pointer(&sy), px)
// Returns true if
// swapped else false
fmt.Println(y)
}
输出:
true
范例2:
// Program to illustrate the usage of
// CompareAndSwapPointer function in Golang
// Including main package
package main
// importing fmt,
// sync/atomic and unsafe
import (
"fmt"
"sync/atomic"
"unsafe"
)
// Defining a struct type P
type P struct{ x, y, z int }
// Declaring pointer to P struct type
var pP *P
// Main function
func main() {
// Defining addr unsafe.Pointer
var unsafe1 = (*unsafe.Pointer)(unsafe.Pointer(&pP))
// Old unsafe pointer
var sy P
// Defining new unasfe.pointer
px:= atomic.SwapPointer(
unsafe1, unsafe.Pointer(&sy))
// Calling CompareAndSwapPointer
// method with its parameters
y:= atomic.CompareAndSwapPointer(
unsafe1, px, unsafe.Pointer(&sy))
// Returns true if
// swapped else false
fmt.Println(y)
}
输出:
false
在上面的示例中,不执行交换操作,因为CompareAndSwapPointer()方法中的旧值必须是SwapPointer()方法返回的值,但此处的旧值不同,因此上述代码返回了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.CompareAndSwapPointer() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。