Go/面向對象特性/接口-多態

# 接口 interfacecode 接口只有方法聲明,沒有實現,沒有數據字段接口 接口能夠匿名嵌入到其它接口或結構體中string 接口不能綁定方法實現io package main import "fmt" //接口 type Persion interface { sayHey() //方法聲明 } type Stu struct{ //Persion name string
相關文章
相關標籤/搜索