gpt4 book ai didi

go - 调用在 golang 中作为接口(interface)变量接收的函数

转载 作者:IT王子 更新时间:2023-10-29 01:17:41 27 4
gpt4 key购买 nike

我有一个类似于下面的代码

package main

import "fmt"

func PrintThis(arg string) {
fmt.Printf("I'm printing %s", arg)
}

func PrintThisAndThat(arg1, arg2 string) {
fmt.Printf("Now printing %s and %s", arg1, arg2)
}

func Invoke(fn interface{}, args ...string) {
//fn(args...)
}

func main() {
Invoke(PrintThis, "foo")
Invoke(PrintThisAndThat, "foo", "bar")
}

这不是实际的生产代码,而是一个简化版本。

问题:- 如果我取消注释行 //fn(args...) 我会得到一个编译错误 prog.go:14: cannot call non-function fn (type interface {})

如何执行作为 Invoke() 函数的参数接收的函数?

实现这一目标的正确方法是什么?

最佳答案

您使用 CallCallSlice reflect.Value 的方法将其作为函数调用。对于所有 reflect.Value 方法,这种 panic 是 fn 是错误的类型。

func Invoke(fn interface{}, args ...string) {
v := reflect.ValueOf(fn)
rargs := make([]reflect.Value, len(args))
for i, a := range args {
rargs[i] = reflect.ValueOf(a)
}
v.Call(rargs)
}

http://play.golang.org/p/xGmNLDcLL_

关于go - 调用在 golang 中作为接口(interface)变量接收的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35753768/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com