我有一个带有空白字段的结构:type Foo struct { a uint32 b uint32 c uint32 _ uint32 //padding}对于没有空白字段的结构,我喜欢使用单行初始化。但是,对于具有空白字段的类型,我似乎无法执行此操作:Foo{1,2,3} // too few values in struct initializerFoo{1,2,3,0} // cannot refer to blank field or methodFoo{1,2,3,_} // cannot use _ as value为了保持良好的语法,我必须命名未使用的字段吗?
- 1 回答
- 0 关注
- 152 浏览
添加回答
举报
0/150
提交
取消