在解码 JSON 时,我总是为每个对象显式编写一个结构,以便我可以为父结构中的各个对象实现 Stringer 接口,如下所示:
type Data struct {
Records []Record
}
type Record struct {
ID int
Value string
}
func (r Record) String() string {
return fmt.Sprintf("{ID:%d Value:%s}", r.ID, r.Value)
}
我最近了解到可以使用匿名结构进行嵌套。这种方法对于定义要解码的数据的结构要简洁得多:
type Data struct {
Records []struct {
ID int
Value string
}
}
但是,是否可以在结构的成员上定义方法,特别是匿名结构的成员?就像第一个代码块中的 Stringer 接口实现一样。