猿问

如何在golang中实例化函数类型?

我想实例化一堆相同类型的函数,而不必复制它们的签名。我已经有一个描述该签名的函数类型(fancyFunc如下)和另一个使用此类参数的函数(doFancyStuff如下)。我将如何做这样的工作?


package main


import "fmt"


type fancyFunc func(a,b,c int) int


func doFancyStuff(f FancyFunc) int {

    // Do something special with f

    return 42

}


func main() {

    // This works but is rather tedious:

    f1 := func(a,b,c int) int { return a + b + c }


    // I would like to create them like this:

    f2 := fancyFunc{ return a * b * c }


    // Eventually, they are used like this:

    fmt.Println(doFancyStuff(f1))

    fmt.Println(doFancyStuff(f2))

}


吃鸡游戏
浏览 99回答 1
1回答

慕码人2483693

你只能按照案例来做f1,或者定义一个普通的函数。没有什么比这更好的f2方式了。在 C 中,人们使用宏来做到这一点,但 Go 没有预处理器(你可以使用一些非官方的预处理器)。
随时随地看视频慕课网APP

相关分类

Go
我要回答