如何解决在go结构中将空结构作为字段的目的是什么?
例如:
rawVote struct {
_struct struct{} `codec:",omitempty,omitemptyarray"`
Sender basics.Address `codec:"snd"`
Round basics.Round `codec:"rnd"`
Period period `codec:"per"`
Step step `codec:"step"`
Proposal proposalValue `codec:"prop"`
}
this example from Algorand"s source code
解决方法
看一下codec
库的实现(这里可能正在使用它的一个分叉),一个名称为_struct
的私有字段用于为结构的每个字段定义标签“设置”:
type MyStruct struct {
_struct bool `codec:",omitempty"` //set omitempty for every field
Field1 string `codec:"-"` //skip this field
Field2 int `codec:"myName"` //Use key "myName" in encode stream
Field3 int32 `codec:",omitempty"` //use key "Field3". Omit if empty.
Field4 bool `codec:"f4,omitempty"` //use key "f4". Omit if empty.
io.Reader //use key "Reader".
MyStruct `codec:"my1"` //use key "my1".
MyStruct //inline it
...
}
之所以使用struct{}
类型而不是bool
类型,是因为它实际上意味着“无数据”,在这里看起来更合适。
来源: https://github.com/algorand/go-codec/blob/master/codec/encode.go#L1418
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。