doushang1890 2015-03-12 15:44
浏览 11
已采纳

golang中字段的界面

Let's say I have a struct which should be used as a result for an upload:

type uploadResult struct {
  Filename string `json:"filename"`
  Code string `json:"code"`
  Reason string `json:"reason"`
}

There will be other structs like this one, both having a field Code and another one called Reason. It would therefore be interesting to have something like a common interface (pseudo-go-code; this one doesn't work):

type apiResult interface {
  Code string `json:"code"`
  Reason string `json:"reason"`
}

Because I would like to call a function which extracts some common fields, but only those that are common:

func failExit(result apiResult) {
  fmt.Println(result.Reason)
}

So how would I rewrite it so that it does what I'm expecting?

Best regards

  • 写回答

2条回答 默认 最新

  • doubaoxue5788 2015-03-12 15:48
    关注

    You should just be able to embed a struct with the common fields in the specific structs.

    Live demo: http://play.golang.org/p/7Ju-r-yE1-

    type apiResult struct {
      Code string `json:"code"`
      Reason string `json:"reason"`
    }
    
    func failExit(result apiResult) {
      fmt.Println(result.Reason)
    }
    
    type uploadResult struct {
      Filename string `json:"filename"`
      apiResult // <-- embedded
    }
    
    func main() {
      var ul uploadResult
      ul.Code = "...some code..."
      ul.Reason = "The description"
      ul.Filename = "foo.txt"
    
      failExit(ul.apiResult)
    }
    

    So there shouldn't really be any need for interfaces in this situation. Just embed the apiResult in whatever structs need it.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 基于作物生长模型下,有限水资源的最大化粮食产量的资源优化模型建立
  • ¥20 关于变压器的具体案例分析
  • ¥15 生成的QRCode圖片加上下載按鈕
  • ¥15 板材切割优化算法,数学建模,python,lingo
  • ¥15 科来模拟ARP欺骗困惑求解
  • ¥100 iOS开发关于快捷指令截屏后如何将截屏(或从截屏中提取出的文本)回传给本应用并打开指定页面
  • ¥15 unity连接Sqlserver
  • ¥15 图中这种约束条件lingo该怎么表示出来
  • ¥15 VSCode里的Prettier如何实现等式赋值后的对齐效果?
  • ¥20 keepalive配置业务服务双机单活的方法。业务服务一定是要双机单活的方式