Golang:从字符串(函数名称)指向函数的指针

有没有机会从以字符串表示的函数名称中获取指向函数的指针?例如,这需要将某些函数作为参数发送给另一个函数。您知道某种元编程。

回答:

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

如果函数的选择取决于某些仅在运行时已知的值,则可以使用映射:

m := map[string]func(int, int) int {

"someFunction1": someFunction1,

"someFunction2": someFunction2,

}

...

z := someOtherFunction(x, y, m[key])

以上是 Golang:从字符串(函数名称)指向函数的指针 的全部内容, 来源链接: utcz.com/qa/417559.html

回到顶部