Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.UnsafeAddr()函数用于获取指向v 数据的指针。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function does not accept any parameter.
Return Value: This function returns the pointer to v’s data.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func (v Value) UnsafeAddr() uintptr
输出:
// Golang program to illustrate
// reflect.UnsafeAddr() Function
package main
import (
"fmt"
"reflect"
"unsafe"
)
// Main function
func main() {
var s = struct{ foo int }{42}
var i int
rs := reflect.ValueOf(&s).Elem()
rf := rs.Field(0)
ri := reflect.ValueOf(&i).Elem()
rf = reflect.NewAt(rf.Type(), unsafe.Pointer(rf.UnsafeAddr())).Elem()
ri.Set(rf)
rf.Set(ri)
fmt.Println(rf)
fmt.Println(ri)
}
示例 2:
42
42
输出:
// Golang program to illustrate
// reflect.UnsafeAddr() Function
package main
import (
"fmt"
"reflect"
"unsafe"
)
// Main function
func main() {
var s = struct{ foo int }{374}
var i int
rs := reflect.ValueOf(s)
rf := rs.Field(0)
rs2 := reflect.New(rs.Type()).Elem()
rs2.Set(rs)
rf = rs2.Field(0)
rf = reflect.NewAt(rf.Type(), unsafe.Pointer(rf.UnsafeAddr())).Elem()
ri := reflect.ValueOf(&i).Elem() // i, but writeable
ri.Set(rf)
fmt.Println(rf)
fmt.Println(ri)
}