在Go中,介面interface其實跟其他語言的介面意思也沒什麼差別。 interface理解其為一種類型的規範或約定。一種類型是不是「實現」了一個介面呢?就看這種類型是不是實作了介面中定義的所有方法。 (推薦:go語言教學)
1、介面的定義與使用。
例如
type I interface{ Get() int Put(int) }
這段話就定義了一個接口,它包含兩個函數Get和Put
好了,我的一個接口實作了這個介面:
type S struct {val int} func (this *S) Get int { return this.val } func (this *S)Put(v int) { this.val = v }
這個結構S就是實作了介面I
#2、空介面
##對於空介面interface{} 其實和泛型的概念很像。任何類型都實作了空接口。 下面舉個例子:一個函數實作這樣的功能:以任何物件作為參數,如果這個物件是實作了介面I,那麼就呼叫介面I的Get方法很多語言都是這樣的邏輯:function g(obj){ if (obj is I) { return (I)obj.Get() } }
func g(any interface{}) int { return any.(I).Get() }
3、Go中interface的寫法:
下面看幾個interface的範例:func SomeFunction(w interface{Write(string)}){ w.Write("pizza") }
func weirdFunc( i int ) interface{} { if i == 0 { return "zero" } return i; }
以上是go語言中介面的使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!