Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.Call()函数用于调用带有输入参数的函数v。要访问该函数,需要在程序中导入reflect 包。
Syntax:
Parameters: This function takes the following parameters:
- in : This parameter is the []Value type.
Return Value: This function returns the output results as Values.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func (v Value) Call(in []Value) []Value
输出:
// Golang program to illustrate
// reflect.Call() Function
package main
import "fmt"
import "reflect"
type T struct {}
func (t *T) Geeks() {
fmt.Println("GeekforGeeks")
}
func main() {
var t T
// use of Call() method
val := reflect.ValueOf(&t).MethodByName("Geeks").Call([]reflect.Value{})
fmt.Println(val)
}
示例 2:
GeekforGeeks
[]
输出:
// Golang program to illustrate
// reflect.Call() Function
package main
import "fmt"
import "reflect"
type T struct {}
func (t *T) Geeks() {
fmt.Println("GeekforGeeks")
}
func (t *T) Geeks1() {
fmt.Println("Golang Package :")
fmt.Println("reflect")
fmt.Println("Call() Function")
}
func main() {
var t T
var t1 T
// use of Call() method
reflect.ValueOf(&t).MethodByName("Geeks").Call([]reflect.Value{})
reflect.ValueOf(&t1).MethodByName("Geeks1").Call([]reflect.Value{})
}