映射中的多种函数类型,Golang

问题描述 投票:0回答:1

我希望将用户输入连接到函数。用户输入是字符串。例如,

"func_name=MyPrintf&s1=Hello, world\!"
或者
"func_name=MyAdd&i1=1&i2=2"

每个函数的代码是,

func MyPrintf(s1 string) {
    fmt.Println(s1)
}

func MyAdd(i1, i2 int) {
    fmt.Println(i1, i2)
}

我想要一张如下所示的地图,

type Myfunc func(string) | func(int, int)   // <- Of course, it's wrong code, just I hope like this.

myMap := make(map[string]Myfunc)

myMap["MyPrintf"] = MyPrintf
myMap["MyAdd"] = MyAdd

myMap 可以通过用户输入的 func_name 字符串来调用函数。

myMap[func_name](s1)
输出:你好,世界!
myMap[func_name](i1, i2)
输出:3

可能吗? 也许我认为使用“eval”是可能的,但我听说使用“eval”不好。所以,我想到使用函数指针,但是Golang中没有函数指针。

我尝试了一些 Golang 通用编程,

type Myfunc interface {
    func(string) | func(int, int)
}

myMap := make(map[string]Myfunc)

输出:发生错误:无法在类型约束之外使用类型 Myfunc:接口包含类型约束

再次尝试,

myMap := make(map[string]interface{})

myMap["MyPrintf"] = interface{}(MyPrintf)
myMap["MyPrintf"].(func(string))("Hello, world!")

输出:你好,世界!

myMap["MyAdd"] = interface{}(MyAdd)
myMap["MyAdd"].(func(int,int))(1, 2)

输出:3

它可以工作,但必须指定正确的功能类型,这不太舒服。我认为这种方式不适合我的场景。请给我帮助。 我很抱歉我的英文写得不好。

function dictionary go pointers generics
1个回答
0
投票

你可以试试这个:

我必须说这不是一个好的做法,因为错误类型导致的恐慌\错误没有得到验证。我会考虑另一种方式来做到这一点。

package main

import "fmt"

type GeneralFunc func(args ...interface{})

func main() {
    // Create a map of functions with the type GeneralFunc
    functionsMap := map[string]GeneralFunc{
        "MyPrintf": func(args ...interface{}) { fmt.Println(args[0].(string)) },
        "MyAdd":    func(args ...interface{}) { fmt.Println(args[0].(int), args[1].(int)) },
    }

    // Use the functions from the map
    functionsMap["MyPrintf"]("Hello World")
    functionsMap["MyAdd"](2, 3)
}
© www.soinside.com 2019 - 2024. All rights reserved.