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

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

Go 语言提供了运行时反射的内置支持实现,并允许程序在反射包的帮助下操作任意类型的对象。 Golang 中的 reflect.FuncOf()函数用于获取给定参数和结果类型的函数类型,即如果 k 代表 int 并且 e 代表字符串, FuncOf([]Type{k}, []Type{e} , false) 表示 func(int) 字符串。要访问此函数,需要在程序中导入反射包。

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