duande1146 2017-02-24 07:39
浏览 4

如何使结构域成为列表中的值?

I have a list of access rights:

const (
    Everyone = 0
    Owner = 1
    Administrator = 2
)

And a struct representing Routes:

type Route struct {
    Name        string
    Method      string
    Pattern     string
    HandlerFunc http.HandlerFunc
    AccessLevel uint64
}

How can I restrict AccessLevel field value of the Route struct be only one of those const from above?

  • 写回答

2条回答 默认 最新

  • duanquan1243 2017-02-24 08:22
    关注

    You can't. Go doesn't support enums. However, you can get close to it. Just introduce a separate type for your access level:

    type AccessLevel uint64
    

    and make the consts be of the type:

    const (
        Everyone      AccessLevel = 0
        Owner                     = 1
        Administrator             = 2
    )
    

    Then define the Field to be of that type:

    type Route struct {
        // ...
        AccessLevel AccessLevel
    }
    

    Now you can assign those consts, but not a "normal" uint64.

    The caveat is that you can still type convert a uint64 to a AccessLevel via AccessLevel(1234).

    评论

报告相同问题?

悬赏问题

  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器