本文介绍了我如何在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中枚举?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!