doumi1912 2017-04-13 09:45
浏览 51
已采纳

如何在Go中为这些类型建模

I have multiple types like this:

type QueryMessage struct {
    Header MessageHeader
    Type   MessageType
    Query  SqlQuery
}

type UpdateMessage struct {
    Header  MessageHeader
    Type    MessageType
    OldData map[string]interface{}
    NewData map[string]interface{}
}

type InsertMessage struct {
    Header MessageHeader
    Type   MessageType
    Data   map[string]interface{}
}

They all have two properties in common, Header and Type. In the end I need to aggregate them into an array of generic messages. At the moment my Message interface looks like this:

type Message interface {}

So what I basically do is something like this (casting them all to Message interface):

q := QueryMessage{ ... }
u := UpdateMessage{ ... }
i := InsertMessage{ ... }
allMessages := [3]Message { Message(q), Message(u), Message(i), }

This works, but it loses all the type information and I would like to be able to still expose Header and Type from the Message type (so that client code theoretically could cast the Message based on the Type back to it's original type.

How can this be done? I couldn't figure out a proper way, interfaces can't have properties and if I make Message a struct, Go doesn't allow me to cast e. g. a QueryMessage to a Message anymore.

  • 写回答

2条回答 默认 最新

  • dqpu4988 2017-04-13 10:10
    关注

    Your interface can provide accessors :

    type Message interface {
       GetHeader() MessageHeader
       GetType() MessageType
    }
    

    You then have to implement this interface on all your types.

    To factor out the common part, you can use an extra base type, and embed it in your other structs :

    // the interface :
    type Message interface {
        GetHeader() MessageHeader
        GetType() MessageType
    }
    
    // a base struct type, which holds 2 fields and implements the Message interface :
    type baseMessage struct {
        Header MessageHeader
        Type   MessageType
    }
    
    func (b *baseMessage) GetHeader() MessageHeader {
        return b.Header
    }
    
    func (b *baseMessage) GetType() MessageType {
        return b.Type
    }
    
    // your three types, with an embedded "baseMessage" part :
    type QueryMessage struct {
        baseMessage
        Query SqlQuery
    }
    
    type UpdateMessage struct {
        baseMessage
        OldData map[string]interface{}
        NewData map[string]interface{}
    }
    
    type InsertMessage struct {
        baseMessage
        Data map[string]interface{}
    }
    
    // compile time check : all the above types implement the Message interface :
    var _ Message = &QueryMessage{}
    var _ Message = &UpdateMessage{}
    var _ Message = &InsertMessage{}
    

    https://play.golang.org/p/Uho_2loXpZ

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

报告相同问题?

悬赏问题

  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作