Go 언어에서 인터페이스를 정의하는 방법: [type 인터페이스_이름 인터페이스 {method_name1 [return_type]}]. 인터페이스는 모든 공통 메소드를 정의합니다. 이러한 메소드를 구현하는 다른 유형은 이 인터페이스를 구현합니다.
이 기사의 운영 환경: windows10 시스템, Go 1.11.2, thinkpad t480 컴퓨터.
Go 언어는 모든 일반적인 메소드를 함께 정의하는 또 다른 데이터 유형인 인터페이스를 제공합니다. 이러한 메소드를 구현하는 다른 유형은 이 인터페이스를 구현합니다.
예:
/* 定义接口 */ type interface_name interface { method_name1 [return_type] method_name2 [return_type] method_name3 [return_type] ... method_namen [return_type] } /* 定义结构体 */ type struct_name struct { /* variables */ } /* 实现接口方法 */ func (struct_name_variable struct_name) method_name1() [return_type] { /* 方法实现 */ } ... func (struct_name_variable struct_name) method_namen() [return_type] { /* 方法实现*/ }
예:
package main import ( "fmt" ) type Phone interface { call() } type NokiaPhone struct { } func (nokiaPhone NokiaPhone) call() { fmt.Println("I am Nokia, I can call you!") } type IPhone struct { } func (iPhone IPhone) call() { fmt.Println("I am iPhone, I can call you!") } func main() { var phone Phone phone = new(NokiaPhone) phone.call() phone = new(IPhone) phone.call() }
위의 예에서는 call() 메소드가 있는 Phone 인터페이스를 정의했습니다. 그런 다음 기본 함수에 Phone 유형 변수를 정의하고 이를 NokiaPhone 및 IPhone에 각각 할당했습니다. 그런 다음 call() 메서드를 호출하면 출력 결과는 다음과 같습니다.
I am Nokia, I can call you! I am iPhone, I can call you!
관련 권장 사항: golang 튜토리얼
위 내용은 Go 언어로 인터페이스를 작성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!