Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.Elem()函数用于获取接口v 包含的值或指针v 指向的值。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function does not accept any parameters.
Return Value: This function returns the value that the interface v contains.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func (v Value) Elem() Value
输出:
// Golang program to illustrate
// reflect.Elem() Function
package main
import (
"fmt"
"reflect"
)
type Book struct {
Id int
Title string
Price float32
Authors []string
}
// Main function
func main() {
book := Book{}
//use of Elem() method
e := reflect.ValueOf(&book).Elem()
for i := 0; i < e.NumField(); i++ {
varName := e.Type().Field(i).Name
varType := e.Type().Field(i).Type
varValue := e.Field(i).Interface()
fmt.Printf("%v %v %v\n", varName, varType, varValue)
}
}
示例 2:
Id int 0
Title string
Price float32 0
Authors []string []
输出:
// Golang program to illustrate
// reflect.Elem() Function
package main
import (
"fmt"
"reflect"
"io"
"os"
)
// Main function
func main() {
//use of Elem() method
writerType := reflect.TypeOf((*io.Writer)(nil)).Elem()
fileType := reflect.TypeOf((*os.File)(nil))
fmt.Println(fileType.Implements(writerType))
}