下面golang这种语法是什么意思?大佬帮解释一下,谢谢
//定义函数类型 type handler func(name string) int //实现函数类型方法 func (h handler) add(name string) int { return h(name) + 10}
相关分类