Go 語言介面

來源:互聯網
上載者:User

標籤:一個   結果   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 語言介面

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.