亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用接口和動態類型進行變量分配

使用接口和動態類型進行變量分配

Go
慕沐林林 2021-09-27 17:31:23
我有一個腳本,它根據用戶輸入從不同的數據源中提取,具有通用界面和每個數據源的類型。每個數據源都有一個方法來獲取該特定源的元數據。我正在努力理解idomatic Go 實現以根據 input 切換類型。這個例子不能編譯,但它是最能說明我想要做什么的版本:type Post interface {  GetMetadata() bool}type YouTubeVideo struct {  ID            string  Title         string  ChannelID     string  ChannelTitle  string  PublishedAt   string}func (ig *YouTubeVideo) GetMetadata() bool {  // ...}type InstagramPic struct {  ID            string  ShortCode     string  Type          string  Title       string  PublishedAt   string}func (ig *InstagramPic) GetMetadata() bool {  // ...}func main() {  var thePost Post  switch domain {  case "youtube":    thePost = new(YouTubeVideo)    thePost.ID = pid  case "instagram":    thePost = new(InstagramPic)    thePost.ShortCode = pid  }  thePost.GetMetadata()  fmt.Println(thePost.title)}
查看完整描述

1 回答

  • 1 回答
  • 0 關注
  • 177 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號