Golang中的interface程式碼和允許效果

weixin_34353714發表於2018-12-11

先說說介面,介面我理解為一些行為的集合。先來看看程式碼和允許效果。

package main

import "fmt"

type TypeCalculator interface {
    TypeCal() string
}

type Worker struct {
    Type int
    Name string
}

type Student struct {
    Name string
}

func (w Worker) TypeCal() string {
    if w.Type == 0 {
        return w.Name +"是藍翔畢業的員工"
    } else {
        return w.Name+"不是藍翔畢業的員工"
    }
}

func (s Student) TypeCal() string  {
    return s.Name + "還在藍翔學挖掘機炒菜"
}

func main() {
    worker := Worker{Type:0, Name:"小華"}
    student := Student{Name:"小明"}
    workers := []TypeCalculator{worker, student}
    for _, v := range workers {
        fmt.Println(v.TypeCal())
    }
}
//執行效果
//小華是藍翔畢業的員工
//小明還在藍翔學挖掘機炒菜

開始解釋

1. 首先我們寫了一個interface,裡面有個待實現的方法TypeCal()

type TypeCalculator interface {
    TypeCal() string
}

2. 又寫了兩個結構體Worker和Student

type Worker struct {
    Type int
    Name string
}

type Student struct {
    Name string
}

3. 分別為他們實現了一個與結構體中同名的函式

func (w Worker) TypeCal() string {
    if w.Type == 0 {
        return w.Name + "是藍翔畢業的員工"
    } else {
        return w.Name + "不是藍翔畢業的員工"
    }
}

func (s Student) TypeCal() string {
    return s.Name + "還在藍翔學挖掘機炒菜"
}

4. 分別建立worker和student的例項

worker := Worker{Type:0, Name:"小華"}
student := Student{Name:"小明"}

5. 重點來了,把這兩個例項放同一個TypeCalculator的切片中

workers := []TypeCalculator{worker, student}

6. 遍歷這個切片,並呼叫切片中的函式列印結果

for _, v := range workers {
    fmt.Println(v.TypeCal())
}

簡單分析

從結果上看,確實是不同的例項呼叫的是各自的函式,這個函式和interface中的函式名和返回值是相同的。那麼加入要是某個例項沒有實現interface中的函式呢?當把Student對應的函式註釋掉,然後再執行程式,程式報錯如下(用我的散裝英語翻譯就是,Student 沒有實現TypeCalculator,TypeCal這個函式/方法找不到)

 Student does not implement TypeCalculator (missing TypeCal method)

感謝作者:小小程式設計師Eric
檢視原文:Golang中的interface,一看就明白

新增小編微信:grey0805,加入知識學習小分隊~!

相關文章