golang中,一般strcut包含 interface類型后,struct類型都需要實(shí)現(xiàn) interface導(dǎo)出的接口,從而成為相應(yīng)的 interface接口類。
實(shí)際上,struct包含interface之后,并不需要實(shí)現(xiàn)interface的接口,也能成為 interface接口類。
代碼如下:
type newEr interface {
New()
}
type testInterface interface {
newEr
Done() -chan struct{}
}
type kkTest struct {
testInterface
}
func NewTest() newEr {
return kkTest{}
}
func main() {
kk := NewTest()
i,ok := kk.(testInterface)
fmt.Println(i,ok)
ch := i.Done()
fmt.Println(ch)
}
其中 i,ok := kk.(testInterface) 測(cè)試成功,也就是說(shuō) kkTest 已經(jīng)是 testInterface 接口類,但是后續(xù) ch := i.Done() 引發(fā) panic,這個(gè)也是預(yù)料之內(nèi)的。
相關(guān)的應(yīng)用可以看 context包中的實(shí)現(xiàn),valueCtx部分實(shí)現(xiàn)了 Context 接口函數(shù),對(duì)其不需要的函數(shù)沒(méi)有實(shí)現(xiàn),如果調(diào)用了這些未實(shí)現(xiàn)的函數(shù)就會(huì)導(dǎo)致 panic。這樣在程序排錯(cuò)其實(shí)是很有好處的,因?yàn)檎{(diào)用到這些接口,說(shuō)明代碼其實(shí)已經(jīng)寫錯(cuò)了。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- 使用go的interface案例實(shí)現(xiàn)多態(tài)范式操作
- Go語(yǔ)言實(shí)現(xiàn)類似c++中的多態(tài)功能實(shí)例
- golang語(yǔ)言如何將interface轉(zhuǎn)為int, string,slice,struct等類型
- golang基礎(chǔ)之Interface接口的使用
- golang中struct和interface的基礎(chǔ)使用教程
- Go之interface的具體使用
- Go語(yǔ)言中你不知道的Interface詳解
- golang中interface接口的深度解析
- 淺談Go語(yǔ)言多態(tài)的實(shí)現(xiàn)與interface使用