您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在golang中通過接口嵌套實現復用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
golang可以做服務器端開發,但golang很適合做日志處理、數據打包、虛擬機處理、數據庫代理等工作。在網絡編程方面,它還廣泛應用于web應用、API應用等領域。
package main import ( "fmt" ) func main() { start(NewB(C{})) start(NewB(D{})) } type A interface { what() } type B struct { A } type C struct { } func (b C) what() { fmt.Println("this is type C") } type D struct { } func (b D) what() { fmt.Println("this is type D") } func start(b B) { b.what() } func NewB(a A) B { return B{a} }
補充:【玩轉Golang】通過組合嵌入實現代碼復用
應用開發中的一個常見情景,為了避免簡單重復,需要在基類中實現共用代碼,著同樣有助于后期維護。
如果在以往的支持類繼承的語言中,比如c++,Java,c#等,這很簡單!可是go不支持繼承,只能mixin嵌入
type ManKind interface{ Say(s string); GetMouth()string } type Man struct{ } func NewMan() ManKind{ return &Man{}; } func (this *Man)GetMouth()string{ return "M0" } func (this *Man) Say(s string){ fmt.Printf("\n Speak with mouth[%s] : \"%s\"",this.GetMouth(),s); } type StrongMan struct{ Man } func NewStrongMan()ManKind{ return &StrongMan{} } func (this*StrongMan)GetMouth()string{ return "M1" } func main(){ NewMan().Say("good luck!") NewStrongMan().Say("good luck!") }
如果支持繼承,很明顯應該輸出
Speak with mouth[M0] : "good luck!"
Speak with mouth[M1] : "good luck!"
但是在golang中只能輸出:
Speak with mouth[M0] : "good luck!"
Speak with mouth[M0] : "good luck!"
StrongMan中調用Say(),此時可以將指針傳遞到內嵌類,只是簡單的指向了Man的方法,在ManKind中調用GetMouth就是ManKind自己的GetMouth,和StrongMan沒有關系。
func (this *StrongMan)Say(s string){ fmt.Printf("\n Speak with mouth[%s] : \"%s\"",this.GetMouth(),s); }
此時,當然可以正確輸出,因為本來調用的就都是StrongMan自己的方法了,這又和我們的初衷相違背了。那么這種情況怎么實現呢?我的方法是,讓Man再臟一點兒,把需要的東西傳遞給組合進來的類。
給Man增加一個屬性mouth,增加一個SetMouth方法,修改一下GetMouth方法,StrongMan的GetMouth方法刪除掉,再修改一下NewStrongMan方法
package main import( "fmt" ) type ManKind interface{ Say(s string); SetMouth(m string) GetMouth()string } type Man struct{ ManKind mouth string } func NewMan() ManKind{ return &Man{mouth:"M0"}; } func (this *Man)GetMouth()string{ return this.mouth; } func (this *Man)SetMouth(s string){ this.mouth=s; } func (this *Man) Say(s string){ fmt.Printf("\n Speak with mouth[%s] : \"%s\"",this.GetMouth(),s); } type StrongMan struct{ Man } func NewStrongMan()ManKind{ sm := &StrongMan{} sm.SetMouth("M1"); return sm; } func main(){ NewMan().Say("good luck!") &NewStrongMan().Say("good luck!") }
上述內容就是怎么在golang中通過接口嵌套實現復用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。