我可以将函数指针设置为与接收器一起使用比在其周围创建函数更简单吗?package mainimport "fmt"type hello struct { name string}func (obj *hello) hello() { fmt.Printf("Hello %s\n", obj.name)}func ntimes(action func (), n int) { for i := 0; i < n; i++ { action() }}func main() { obj := hello{"world"} // Can I do following simpler? ntimes(func() {obj.hello();}, 3)}
- 1 回答
- 0 关注
- 209 浏览
添加回答
举报
0/150
提交
取消