英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论