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 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd