reflect.MethodByName() Function in Golang with Examples Last Updated : 03 May, 2020 Comments Improve Suggest changes Like Article Like Report Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.MethodByName() Function in Golang is used to get function value corresponding to the method of v with the given name. To access this function, one needs to imports the reflect package in the program. Syntax: func (v Value) MethodByName(name string) Value Parameters: This function does not accept any parameter. Return Value: This function returns a function value corresponding to the method of v with the given name. Below examples illustrate the use of the above method in Golang: Example 1: C // 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{}) } Output: GeeksForGeeks Example 2: C // 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") } Output: 10 Geekforgeeks Comment More infoAdvertise with us Next Article reflect.MethodByName() Function in Golang with Examples S SHUBHAMSINGH10 Follow Improve Article Tags : Go Language Golang-reflect Similar Reads reflect.NumMethod() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.NumMethod() Function in Golang is used to get the number of exported methods in the value's method set. To access 2 min read reflect.New() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package.The reflect.New() Function in Golang is used to get the Value representing a pointer to a new zero value for the specified typ 2 min read reflect.Len() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Len() Function in Golang is used to get the v's length. To access this function, one needs to imports the reflect 1 min read reflect.MakeChan() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.MakeChan() Function in Golang is used to create a new channel with the specified type and buffer size. To access 2 min read reflect.Index() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Index() Function in Golang is used to get the v's i'th element. To access this function, one needs to imports the 2 min read Like