📜  Golang 中的reflect.Call()函数示例

📅  最后修改于: 2021-10-25 02:50:52             🧑  作者: Mango

Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.Call()函数用于调用带有输入参数的函数v。要访问该函数,需要在程序中导入reflect 包。

下面的例子说明了上述方法在 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{})
  
}