我如何在golang中枚举? [英] How do I do enums in golang?

查看:43
本文介绍了我如何在golang中枚举?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有

const (
  BlahFoo = 1 << iota
  MooFoo
)

然后

type Cluster struct {
  a  int
  b  int
}

我希望Cluster.a仅是BlahFoo或MooFoo

I want Cluster.a to only be BlahFoo or MooFoo

我该如何执行?

推荐答案

type FooEnum int

const (
  BlahFoo FooEnum = 1 << iota
  MooFoo
)

type Cluster struct {
  a FooEnum
  b int
}

这篇关于我如何在golang中枚举?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆