我一直在努力理解当接口类型嵌入到结构中时编码/解码与完全没有嵌入时的区别。
使用以下示例:here in the playground
注意代码声明了一个接口IFace。它声明了一个非导出的 struct impl。它设置了一些采空区的方法Register,GobEncode以及GobDecode该impl结构。
然后,它还声明了一个Data导出的结构体,并且具有一个Foo接口类型的字段IFace。
所以,有一个接口,一个实现它的结构,以及一个容器结构,它有一个值为该接口类型的字段。
我的问题是容器结构Data愉快地通过 Gob 手套发送,并且当它通过时,它愉快地编码和解码结构中的 IFace 字段Data......太棒了!但是,我似乎无法通过 gob gauntlet 仅发送 IFace 值的一个实例。
我缺少的魔法调用是什么?
搜索错误消息给出了许多结果,但我相信我已经满足了 Gob 合同......并且“证明”在成功的 struct gobbing 中。显然我错过了一些东西,但看不到它。
注意,程序的输出是:
Encoding {IFace:bilbo} now
Encoding IFace:baggins now
Decoded {IFace:bilbo} now
decode error: gob: local interface type *main.IFace can only be decoded from remote interface type; received concrete type impl
Decoded <nil> now
实际代码是:
package main
import (
"bytes"
"encoding/gob"
"fmt"
)
type IFace interface {
FooBar() string
}
type impl struct {
value string
}
func init() {
gob.Register(impl{})
}
func (i impl) FooBar() string {
return i.value
}
func (i impl) String() string {
return "IFace:" + i.value
}
func (i impl) GobEncode() ([]byte, error) {
return []byte(i.value), nil
}
func (i *impl) GobDecode(dat []byte) error {
val := string(dat)
i.value = val
return nil
}
func newIFace(val string) IFace {
return impl{val}
}
type Data struct {
Foo IFace
}
func main() {
var network bytes.Buffer // Stand-in for a network connection
enc := gob.NewEncoder(&network) // Will write to network.
dec := gob.NewDecoder(&network) // Will read from network.
var err error
var bilbo IFace
bilbo = newIFace("bilbo")
var baggins IFace
baggins = newIFace("baggins")
dat := Data{bilbo}
fmt.Printf("Encoding %v now\n", dat)
err = enc.Encode(dat)
if err != nil {
fmt.Println("encode error:", err)
}
fmt.Printf("Encoding %v now\n", baggins)
err = enc.Encode(baggins)
if err != nil {
fmt.Println("encode error:", err)
}
眼眸繁星
相关分类