Go 언어 인터페이스


Go 언어는 모든 일반적인 메소드를 함께 정의하는 또 다른 데이터 유형인 인터페이스를 제공합니다. 이러한 메소드를 구현하는 다른 유형은 이 인터페이스를 구현합니다.

Instance

/* 定义接口 */
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] {
   /* 方法实现*/
}

Instance

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!