這篇文章主要介紹go語言中接口的定義方式,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)公司專注于海陽企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),商城網(wǎng)站建設(shè)。海陽網(wǎng)站建設(shè)公司,為海陽等地區(qū)提供建站服務(wù)。全流程按需定制,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
go語言中接口的定義方式:【type interface_name interface {method_name1 [return_type]}】。接口把所有的具有共性的方法定義在一起,任何其他類型只要實(shí)現(xiàn)了這些方法就是實(shí)現(xiàn)了這個(gè)接口。
Go 語言提供了另外一種數(shù)據(jù)類型即接口,它把所有的具有共性的方法定義在一起,任何其他類型只要實(shí)現(xiàn)了這些方法就是實(shí)現(xiàn)了這個(gè)接口。
舉例:
/* 定義接口 */ type interface_name interface { method_name1 [return_type] method_name2 [return_type] method_name3 [return_type] ... method_namen [return_type] } /* 定義結(jié)構(gòu)體 */ type struct_name struct { /* variables */ } /* 實(shí)現(xiàn)接口方法 */ func (struct_name_variable struct_name) method_name1() [return_type] { /* 方法實(shí)現(xiàn) */ } ... func (struct_name_variable struct_name) method_namen() [return_type] { /* 方法實(shí)現(xiàn)*/ }
實(shí)例:
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() }
在上面的例子中,我們定義了一個(gè)接口Phone,接口里面有一個(gè)方法call()。然后我們?cè)趍ain函數(shù)里面定義了一個(gè)Phone類型變量,并分別為之賦值為NokiaPhone和IPhone。然后調(diào)用call()方法,輸出結(jié)果如下:
I am Nokia, I can call you! I am iPhone, I can call you!
以上是“go語言中接口的定義方式”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!