主頁 > 知識庫 > 使用go的interface案例實(shí)現(xiàn)多態(tài)范式操作

使用go的interface案例實(shí)現(xiàn)多態(tài)范式操作

熱門標(biāo)簽:重慶慶云企業(yè)400電話到哪申請 仙桃400電話辦理 宿遷便宜外呼系統(tǒng)代理商 湛江crm外呼系統(tǒng)排名 不封卡外呼系統(tǒng) 鄭州智能語音電銷機(jī)器人價(jià)格 地圖標(biāo)注免費(fèi)定制店 上海極信防封電銷卡價(jià)格 寧波語音外呼系統(tǒng)公司

看程序:

package main 
import "fmt" 
type BaseIntf interface {
 Process()
}
 
type Msg1 struct {
 req int
 rsp int
}
 
func (p *Msg1) Process() {
 fmt.Println("process 1")
}
 
type Msg2 struct {
 req int
 rsp int
}
 
func (p *Msg2) Process() {
 fmt.Println("process 2")
}
 
func main() {
 m1 := new(Msg1)
 m1.Process()
 
 m2 := new(Msg2)
 m2.Process()
}

變一下:

package main 
import "fmt" 
type BaseIntf interface {
 Process()
}
 
func Run(proc BaseIntf) {
 fmt.Println("run")
 proc.Process()
}
 
type Msg1 struct {
 req int
 rsp int
}
 
func (p *Msg1) Process() {
 fmt.Println("process 1")
} 
 
type Msg2 struct {
 req int
 rsp int
}
 
func (p *Msg2) Process() {
 fmt.Println("process 2")
} 
 
func main() {
 m1 := new(Msg1)
 Run(m1)
 
 m2 := new(Msg2)
 Run(m2)
}

這種風(fēng)格的代碼,見了很多次了。

不多說。

補(bǔ)充:go語言中通過空接口查詢來實(shí)現(xiàn)多態(tài)

直接看代碼吧~ 空接口算是go語言的精妙之處

package main
type Person struct {
 name string
 age int
}
type Cat struct {
 kind string
 sex bool
 price int
}
func main() {
 family := make([]interface{},0,10)
 obj1 := Person{
 name: "呂云飛",
 age: 28,
 }
 obj2 := Person{
 name: "胡景茹",
 age: 18,
 }
 obj3 := Cat{
 kind: "英短",
 sex: true,
 price: 2000,
 }
 family = append(family, obj1, obj2, obj3)
 for _, value := range family {
 switch obj := value.(type) {
 case *Person:
 print(obj.name + "\n")
 case *Cat:
 print(obj.kind + "\n")
 }
 }
}

輸出結(jié)果如下

呂云飛

胡景茹

英短

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • Go語言實(shí)現(xiàn)類似c++中的多態(tài)功能實(shí)例
  • golang語言如何將interface轉(zhuǎn)為int, string,slice,struct等類型
  • golang基礎(chǔ)之Interface接口的使用
  • golang struct 實(shí)現(xiàn) interface的方法
  • golang中struct和interface的基礎(chǔ)使用教程
  • Go之interface的具體使用
  • Go語言中你不知道的Interface詳解
  • golang中interface接口的深度解析
  • 淺談Go語言多態(tài)的實(shí)現(xiàn)與interface使用

標(biāo)簽:西雙版納 物業(yè)服務(wù) 安康 海南 儋州 青海 電子產(chǎn)品 遼寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用go的interface案例實(shí)現(xiàn)多態(tài)范式操作》,本文關(guān)鍵詞  使用,的,interface,案例,實(shí)現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用go的interface案例實(shí)現(xiàn)多態(tài)范式操作》相關(guān)的同類信息!
  • 本頁收集關(guān)于使用go的interface案例實(shí)現(xiàn)多態(tài)范式操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章