我不确定“跳过”是否是描述我所看到的正确方式:
type Container struct {
clck sync.Mutex
closed bool
cli *client.Client
ID string
IO io.ReadWriteCloser
closetimeout time.Duration
}
func (c *Container) Write(dat []byte) (int, error) {
return c.IO.Write(dat)
}
func (c *Container) Read(dat []byte) (int, error) {
return c.IO.Read(dat)
}
在我看来Read,Write方法没有实现。这在 Golang 中叫什么?
不负相思意
倚天杖
相关分类