Home >Backend Development >Golang >Why Doesn't a Go Struct Implement an Interface if a Method's Parameter or Return Type Doesn't Fully Match?
In this example, we have two interfaces, A and B, and two structs, C and D, that implement them. When trying to pass an instance of D to a function expecting a type that implements B, an error is encountered.
Interfaces define method signatures that implementing types must adhere to. A struct implements an interface if it has methods with the same signatures as those in the interface.
The problem arises because the Connect method in D returns a pointer to C instead of A. According to interface B, the Connect method should return A. This mismatch prevents D from fully implementing interface B.
To fix the issue, the return type of Connect in D should be changed to match the interface definition:
type D struct { } func (d *D) Connect() (A, error) { // Returns A, not *C c := new(C) return c, nil }
Go's structural typing allows structs to implement interfaces without explicitly declaring them. This can lead to errors if the methods in the struct do not match the interface's signatures.
When passing an object to a function expecting an interface, the object's type must implement that interface. In the case of Equaler, the argument type of Equal must match the interface type, not simply another struct type that also implements the interface.
The above is the detailed content of Why Doesn't a Go Struct Implement an Interface if a Method's Parameter or Return Type Doesn't Fully Match?. For more information, please follow other related articles on the PHP Chinese website!