在 Go 中,如果结构体实现了接口的所有方法,则它实现了该接口。但是,如果结构体方法有一个实现接口的参数,则该结构体将不会实现该接口。
package main type A interface { Close() } type B interface { Connect() (A, error) } type C struct { } func (c *C) Close() { } type D struct { } func (d *D) Connect() (*C, error) { c := new(C) return c, nil } func test(b B) { } func main() { d := new(D) test(d) }
在上面的示例中,结构体 D 没有实现接口 B,因为D 有一个实现接口 A 的参数。您收到的错误消息是:
cannot use d (type *D) as type B in argument to test: *D does not implement B (wrong type for Connect method) have Connect() (*C, error) want Connect() (A, error)
要修复此错误,您需要更改 Connect 中参数的类型D 到 A 的方法。
type D struct { } func (d *D) Connect() (A, error) { c := new(C) return c, nil }
现在,结构体 D 将实现接口 B,您将能够以 D 值作为参数调用 test() 函数。
以上是如果方法参数实现了某个接口,那么 Go 结构体是否也实现了该接口?的详细内容。更多信息请关注PHP中文网其他相关文章!