type MyType interface { MyStringSlice []string}
这有什么问题?
它可以作为结构很好地工作,如下所示:
type MyType struct { MyStringSlice []string}
但设置为接口时编译时出现以下错误:
syntax error: unexpected [, expecting (
慕斯王
相关分类