標籤:一個 結果 div iap 變數 int 結構體 資料 例子
Go 語言介面
Go 語言提供了另外一種資料類型即介面,它把所有的具有共性的方法定義在一起,任何其他類型只要實現了這些方法就是實現了這個介面。
執行個體
1 /* 定義介面 */ 2 type interface_name interface { 3 method_name1 [return_type] 4 method_name2 [return_type] 5 method_name3 [return_type] 6 ... 7 method_namen [return_type] 8 } 9 10 /* 定義結構體 */11 type struct_name struct {12 /* variables */13 }14 15 /* 實現介面方法 */16 func (struct_name_variable struct_name) method_name1() [return_type] {17 /* 方法實現 */18 }19 ...20 func (struct_name_variable struct_name) method_namen() [return_type] {21 /* 方法實現*/22 }
執行個體
1 package main 2 3 import ( 4 "fmt" 5 ) 6 7 type Phone interface { 8 call() 9 }10 11 type NokiaPhone struct {12 }13 14 func (nokiaPhone NokiaPhone) call() {15 fmt.Println("I am Nokia, I can call you!")16 }17 18 type IPhone struct {19 }20 21 func (iPhone IPhone) call() {22 fmt.Println("I am iPhone, I can call you!")23 }24 25 func main() {26 var phone Phone27 28 phone = new(NokiaPhone)29 phone.call()30 31 phone = new(IPhone)32 phone.call()33 34 }
在上面的例子中,我們定義了一個介面Phone,介面裡面有一個方法call()。然後我們在main函數裡面定義了一個Phone類型變數,並分別為之賦值為NokiaPhone和IPhone。然後調用call()方法,輸出結果如下:
I am Nokia, I can call you!I am iPhone, I can call you!
Go 語言介面