在 Go 中,可以从以字符串形式提供的函数名称中检索函数指针。此功能在元编程场景中非常有价值,例如基于字符串参数动态调用函数。
与某些动态语言不同,Go 函数是一等值。因此,您可以直接将函数作为参数传递给其他函数。考虑以下示例:
package main import "fmt" func someFunction1(a, b int) int { return a + b } func someFunction2(a, b int) int { return a - b } func someOtherFunction(a, b int, f func(int, int) int) int { return f(a, b) } func main() { fmt.Println(someOtherFunction(111, 12, someFunction1)) fmt.Println(someOtherFunction(111, 12, someFunction2)) }
输出:
123 99
在此示例中,someOtherFunction 采用两个整数参数和一个函数指针(f 参数)。然后它使用给定的参数调用提供的函数。打印结果。
如果函数的选择取决于仅在运行时已知的值,则可以使用映射:
m := map[string]func(int, int) int{ "someFunction1": someFunction1, "someFunction2": someFunction2, } ... z := someOtherFunction(x, y, m[key])
以上是Go中如何使用字符串函数名动态调用函数?的详细内容。更多信息请关注PHP中文网其他相关文章!