英文:
Go - Interface containing slice wont compile
问题
这段代码在声明接口时出现了语法错误。在接口中,不能直接声明切片类型。接口只能包含方法的签名,而不能包含具体的字段。如果想要在接口中使用切片类型,可以将其定义为方法的参数或返回值。以下是修正后的代码示例:
type MyType interface {
GetMyStringSlice() []string
}
type MyStruct struct {
MyStringSlice []string
}
func (s MyStruct) GetMyStringSlice() []string {
return s.MyStringSlice
}
这样,你可以通过实现GetMyStringSlice
方法来获取切片类型的值。
英文:
type MyType interface {
MyStringSlice []string
}
What is wrong with this?
It works well as a struct as in:
type MyType struct {
MyStringSlice []string
}
but compiles with the following error when set as interface:
syntax error: unexpected [, expecting (
答案1
得分: 4
一个接口只能包含方法或其他接口。请查看语言规范。
英文:
An interface can only hold methods or other interfaces. Have a look at the Language Specification.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论