我想实例化一堆相同类型的函数,而不必复制它们的签名。我已经有一个描述该签名的函数类型(fancyFunc如下)和另一个使用此类参数的函数(doFancyStuff如下)。我将如何做这样的工作?package mainimport "fmt"type fancyFunc func(a,b,c int) intfunc 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))}
1 回答
慕码人2483693
TA贡献1860条经验 获得超9个赞
你只能按照案例来做f1
,或者定义一个普通的函数。没有什么比这更好的f2
方式了。在 C 中,人们使用宏来做到这一点,但 Go 没有预处理器(你可以使用一些非官方的预处理器)。
- 1 回答
- 0 关注
- 98 浏览
添加回答
举报
0/150
提交
取消