Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的 reflect.FuncOf()函数用于获取给定参数和结果类型的函数类型,即如果 k 代表 int 并且 e 代表字符串, FuncOf([]Type{k}, []Type{e} , false) 表示 func(int) 字符串。要访问此函数,需要在程序中导入反射包。
Syntax:
Parameters: This function takes three parameters of []Type type (in, out) and bool type( variadic ).
Return Value: This function returns the function type with the given argument and result types.
下面的例子说明了上述方法在 Golang 中的使用:
示例 1:
func FuncOf(in, out []Type, variadic bool) Type
输出:
// Golang program to illustrate
// reflect.FuncOf() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
ta := reflect.ArrayOf(5, reflect.TypeOf(123))
tc := reflect.ChanOf(reflect.SendDir, ta)
tp := reflect.PtrTo(ta)
// use of FuncOf method
tf := reflect.FuncOf([]reflect.Type{ta},
[]reflect.Type{tp, tc}, false)
fmt.Println(tf)
}
示例 2:
func([5]int) (*[5]int, chan<- [5]int)
输出:
// Golang program to illustrate
// reflect.FuncOf() Function
package main
import (
"fmt"
"reflect"
)
// Main function
func main() {
var k = reflect.TypeOf(0)
var e = reflect.TypeOf("")
// use of FuncOf method
fmt.Println(reflect.FuncOf([]reflect.Type{k},
[]reflect.Type{e}, false).String())
}