douchui3933 2014-07-13 14:02
浏览 59
已采纳

在这种简单情况下如何解决缺少泛型的问题

I am creating a simple sql mapper that allows me to create sql mappings at run time because i have no idea how the database schema will be like.

consider the following struct:

type SqlColumn struct {
    name string
    columnType ? //int float etc...
}

what type should i use for the columnType field?

the only way i could think of is to use strings or a const and handle the rest using reflection, am i on the right path?

  • 写回答

1条回答 默认 最新

  • dpaal28266 2014-07-13 14:07
    关注

    Use interface{} for this:

    type SqlColumn struct {
        name string
        columnType interface{}
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 iscsi服务无法访问,如何解决?
  • ¥15 感应式传感器制作的感应式讯响器
  • ¥15 如何使用SC92F8003固件库解析私有协议数据?
  • ¥15 如何在音频中嵌入字符串(水印)信息进行传递
  • ¥30 plc怎么以设计说明书申请软著
  • ¥15 硬盘识别不了,需要初始化,可我的数据怎么办
  • ¥15 lvm2被mask了,怎么unmask都没用(标签-ubuntu|关键词-apt)
  • ¥15 交叉注意力机制的残差问题
  • ¥15 微信小程序:渲染收货地址时页面不显示
  • ¥20 win7 64位DirectShow提示初始化失败如何解决?