포인터 수신기를 사용하는 Golang 메서드 [중복]
문제:
Go에서, 언제 포인터 수신기를 사용하여 메서드를 만들고 인터페이스를 구현하면 다음 오류가 발생할 수 있습니다. 발생:
cannot use obj (type Implementation) as type IFace in return argument: Implementation does not implement IFace (GetSomeField method has pointer receiver)
답변:
이 오류를 해결하려면 구조체에 대한 포인터가 인터페이스를 구현하는지 확인하세요. 이를 통해 메서드가 복사본을 만들지 않고도 실제 인스턴스의 필드를 수정할 수 있습니다.
코드 수정:
문제 있는 줄을 다음으로 바꾸세요.
return &obj
설명:
포인터를 반환하여 메소드가 실제 인스턴스를 수정할 수 있도록 허용하면서 인터페이스를 구현합니다.
예(수정됨):
package main import ( "fmt" ) type IFace interface { SetSomeField(newValue string) GetSomeField() string } type Implementation struct { someField string } func (i *Implementation) GetSomeField() string { return i.someField } func (i *Implementation) SetSomeField(newValue string) { i.someField = newValue } func Create() *Implementation { return &Implementation{someField: "Hello"} } func main() { var a IFace a = Create() a.SetSomeField("World") fmt.Println(a.GetSomeField()) }
포인터 수신기를 사용하고 다음을 보장합니다. 포인터가 인터페이스를 구현하면 필요한 메서드를 구현하는 동안 구조체의 실제 인스턴스를 성공적으로 수정할 수 있습니다.
위 내용은 포인터 수신기를 사용하는 My Go 메서드가 인터페이스 구현에 실패하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!