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

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

Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的reflect.MethodByName()函数用于获取给定名称的v 方法对应的函数值。要访问此函数,需要在程序中导入反射包。

下面的例子说明了上述方法在 Golang 中的使用:

示例 1:

func (v Value) MethodByName(name string) Value

输出:

// Golang program to illustrate
// reflect.MethodByName() Function
     
package main
     
import (
    "fmt"
    "reflect"
)
   
// Main function
type T struct {}
  
func (t *T) GFG() {
    fmt.Println("GeeksForGeeks")
}
  
func main() {
    var t T
    reflect.ValueOf(&t).MethodByName("GFG").Call([]reflect.Value{})
}

示例 2:

GeeksForGeeks

输出:

// Golang program to illustrate
// reflect.MethodByName() Function
     
package main
     
import (
    "fmt"
    "reflect"
)
   
// Main function
  
type YourT2 struct {}
func (y YourT2) MethodFoo(i int, oo string) {
    fmt.Println(i)
    fmt.Println(oo)
}
  
func Invoke(any interface{}, name string, args... interface{}) {
    inputs := make([]reflect.Value, len(args))
    for i, _ := range args {
        inputs[i] = reflect.ValueOf(args[i])
    }
    reflect.ValueOf(any).MethodByName(name).Call(inputs)
}
  
func main() {
     Invoke(YourT2{}, "MethodFoo", 10, "Geekforgeeks")
}