我最近重组了我的代码,现在main包下有两个包:chain和api.
在chain我定义了一些结构SomeStruct1和这些结构的SomeStruct2接口。SomeInterface下面是它chain/cli.go的样子。
package chain
type CLI struct{}
func (cli *CLI) Run() {
...
gob.Register(SomeStruct1{})
gob.Register(SomeStruct2{})
...
}
我api/api.go在里面放了另一个类似的地方。Run()gob.Register(chain.SomeStruct1{})
main.go看起来像这样:
package main
import (
"myproj/api"
"myproj/chain"
)
func main() {
// I have also tried the following lines.
// gob.Register(chain.SomeStruct1{})
// gob.Register(chain.SomeStruct2{})
go api.Run()
cli := chain.CLI{}
cli.Run()
}
但是,我在运行时遇到了错误gob: name not registered for interface: "main.SomeStruct1"。当我将所有代码都放在一个包中时,这并没有发生main,我觉得SomeStruct1现在在chain包下很奇怪,但错误指的是main.SomeStruct1. 我哪里弄错了gob.Register()?
潇潇雨雨
相关分类