为结构字段创建函数类型。

huangapple go评论79阅读模式
英文:

Make function type for the structure field

问题

可以为结构的字段设置函数类型吗?

我需要像这样的结构:

type MyStruct struct {
  Callback func(int)
}

谢谢。

英文:

Can i set up function type for structure's field?

I need something like:

type MyStruct struct {
  Callback func(int)
}

Thank you

答案1

得分: 2

是的,在Go语言中,函数是一等公民。你可以在任何你可以放置其他基本类型(比如整数)的地方声明一个函数类型

英文:

Yes, functions are first class things in Go. You can declare a function type anywhere you could put any other basic type like an integer.

huangapple
  • 本文由 发表于 2014年1月10日 02:55:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/21028760.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定