首页 > 后端开发 > Golang > Go中如何使用字符串函数名动态调用函数?

Go中如何使用字符串函数名动态调用函数?

DDD
发布: 2024-12-05 17:05:12
原创
405 人浏览过

How Can I Use String Function Names to Call Functions Dynamically in Go?

在 Go 中使用带有字符串函数名称的函数指针

在 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板