我有
const (
BlahFoo = 1 << iota
MooFoo
)
然后
type Cluster struct {
a int
b int
}
我希望 Cluster.a 只能是 BlahFoo 或 MooFoo
我如何强制执行?
holdtom
相关分类