首页 > 后端开发 > Golang > 如何从 Go 中的函数名称检索函数指针?

如何从 Go 中的函数名称检索函数指针?

Barbara Streisand
发布: 2024-12-03 07:22:10
原创
345 人浏览过

How Can I Retrieve Function Pointers from Function Names in Go?

从 Go 中的函数名称检索函数指针

许多编程语言允许从函数名称的字符串表示形式访问函数指针。此功能对于元编程技术特别有用,例如动态选择要执行的函数。

Go 中的解决方案

与其他一些语言不同,Go 首先原生支持函数指针-class 值,消除了从函数名称获取它们的额外机制的需要。相反,函数可以直接作为参数传递给其他函数。

例如,考虑以下代码:

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))
}
登录后复制

在此代码中, someOtherFunction 接受函数指针作为参数并调用使用提供的参数指定的函数。

使用动态函数的映射选择

如果函数的选择取决于运行时信息,您可以使用映射将函数名称与相应的函数指针关联起来。例如:

m := map[string]func(int, int) int{
    "someFunction1": someFunction1,
    "someFunction2": someFunction2,
}

...

z := someOtherFunction(x, y, m[key])
登录后复制

这允许您根据指定的键动态检索和执行函数。

以上是如何从 Go 中的函数名称检索函数指针?的详细内容。更多信息请关注PHP中文网其他相关文章!

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