숨겨진 메소드로 인터페이스 구현
회계 시스템을 개발할 때 메인 프로그램에서 인터페이스의 특정 구현을 숨기는 것이 바람직할 수 있습니다. 하나의 회계 시스템만 활성화되도록 합니다. 이를 달성하려면 인터페이스 메소드를 내보내지 않고 로컬 어댑터에서 함수를 호출하는 내보낸 함수를 생성하는 것을 고려할 수 있습니다.
package accounting import "errors" type IAdapter interface { getInvoice() error } var adapter IAdapter func SetAdapter(a IAdapter) { adapter = a } func GetInvoice() error { if (adapter == nil) { return errors.New("No adapter set!") } return adapter.getInvoice() }
그러나 이 접근 방식에서는 컴파일러가 내보내지 않은 getInvoice에 액세스할 수 없기 때문에 컴파일 오류가 발생합니다. Accountingsystem 패키지의 메서드입니다.
cannot use adapter (type accountingsystem.Adapter) as type accounting.IAdapter in argument to accounting.SetAdapter: accountingsystem.Adapter does not implement accounting.IAdapter (missing accounting.getInvoice method) have accountingsystem.getInvoice() error want accounting.getInvoice() error
익명 구조체 필드 접근법
가능한 해결책 중 하나는 익명 구조체 필드를 사용하는 것입니다. 이를 통해 Accountingsystem.Adapter가 Accounting.IAdapter 인터페이스를 충족할 수 있지만 사용자가 내보내지 않은 메서드의 자체 구현을 제공할 수는 없습니다.
type Adapter struct { accounting.IAdapter }
대체 접근 방식
보다 관용적인 접근 방식은 내보내지 않은 어댑터 유형을 생성하고 어댑터를 회계에 등록하는 기능을 제공하는 것입니다. package.
package accounting type IAdapter interface { GetInvoice() error } package accountingsystem type adapter struct {} func (a adapter) GetInvoice() error {return nil} func SetupAdapter() { accounting.SetAdapter(adapter{}) }
이 접근 방식을 사용하면 Accountingsystem.adapter 유형이 기본 프로그램에서 숨겨지고, SetupAdapter 함수를 호출하여 회계 시스템을 초기화할 수 있습니다.
위 내용은 Go에서 숨겨진 인터페이스 메소드를 올바르게 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!