我试图代表一个简化的染色体,它由N个碱基组成,每个碱基只能是{A, C, T, G}
中的一个。
我想用枚举来形式化约束,但我想知道在Go中模仿枚举的最惯用方法是什么。
答案 0 :(得分:573)
引用语言规范:Iota
在常量声明中,预先声明的标识符iota表示连续的无类型整数常量。每当保留字const出现在源中并在每个ConstSpec之后递增时,它将复位为0。它可以用来构造一组相关的常量:
const ( // iota is reset to 0
c0 = iota // c0 == 0
c1 = iota // c1 == 1
c2 = iota // c2 == 2
)
const (
a = 1 << iota // a == 1 (iota has been reset)
b = 1 << iota // b == 2
c = 1 << iota // c == 4
)
const (
u = iota * 42 // u == 0 (untyped integer constant)
v float64 = iota * 42 // v == 42.0 (float64 constant)
w = iota * 42 // w == 84 (untyped integer constant)
)
const x = iota // x == 0 (iota has been reset)
const y = iota // y == 0 (iota has been reset)
在ExpressionList中,每个iota的值都是相同的,因为它只在每个ConstSpec之后递增:
const (
bit0, mask0 = 1 << iota, 1<<iota - 1 // bit0 == 1, mask0 == 0
bit1, mask1 // bit1 == 2, mask1 == 1
_, _ // skips iota == 2
bit3, mask3 // bit3 == 8, mask3 == 7
)
最后一个例子利用了最后一个非空表达式列表的隐式重复。
所以你的代码可能就像
const (
A = iota
C
T
G
)
或
type Base int
const (
A Base = iota
C
T
G
)
如果您希望base与int无关。
答案 1 :(得分:76)
参考jnml的答案,你可以通过根本不导出Base类型来防止新的Base类型实例(即将其写为小写)。如果需要,您可以创建一个可导出的接口,该接口具有返回基本类型的方法。该接口可用于处理Bases的外部函数,即
package a
type base int
const (
A base = iota
C
T
G
)
type Baser interface {
Base() base
}
// every base must fulfill the Baser interface
func(b base) Base() base {
return b
}
func(b base) OtherMethod() {
}
package main
import "a"
// func from the outside that handles a.base via a.Baser
// since a.base is not exported, only exported bases that are created within package a may be used, like a.A, a.C, a.T. and a.G
func HandleBasers(b a.Baser) {
base := b.Base()
base.OtherMethod()
}
// func from the outside that returns a.A or a.C, depending of condition
func AorC(condition bool) a.Baser {
if condition {
return a.A
}
return a.C
}
主包a.Baser
内部现在实际上就像一个枚举。
只有在包中,您才可以定义新实例。
答案 2 :(得分:17)
从Go 1.4开始,go generate
工具与stringer
命令一起引入,使您的枚举易于调试和打印。
答案 3 :(得分:16)
你可以这样做:
type MessageType int32
const (
TEXT MessageType = 0
BINARY MessageType = 1
)
使用此代码编译器应检查枚举类型
答案 4 :(得分:7)
对于这样的用例,使用字符串常量可能很有用,因此可以将其编组为 JSON 字符串。在以下示例中,[]Base{A,C,G,T}
将被封送至 ["adenine","cytosine","guanine","thymine"]
。
type Base string
const (
A Base = "adenine"
C = "cytosine"
G = "guanine"
T = "thymine"
)
当使用 iota
时,这些值被编组为整数。在以下示例中,[]Base{A,C,G,T}
将被封送至 [0,1,2,3]
。
type Base int
const (
A Base = iota
C
G
T
)
以下是比较两种方法的示例:
答案 5 :(得分:5)
上述使用const
和iota
的示例确实是在Go中表示原始枚举的最常用方法。但是,如果您正在寻找一种方法来创建一个类似于您在其他语言(如Java或Python)中看到的类型的功能更全面的枚举,该怎么办?
创建一个开始在Python中看起来像字符串枚举的对象的一种非常简单的方法是:
package main
import (
"fmt"
)
var Colors = newColorRegistry()
func newColorRegistry() *colorRegistry {
return &colorRegistry{
Red: "red",
Green: "green",
Blue: "blue",
}
}
type colorRegistry struct {
Red string
Green string
Blue string
}
func main() {
fmt.Println(Colors.Red)
}
假设您还需要一些实用工具方法,例如Colors.List()
和Colors.Parse("red")
。你的颜色更复杂,需要成为一个结构。然后你可能会做这样的事情:
package main
import (
"errors"
"fmt"
)
var Colors = newColorRegistry()
type Color struct {
StringRepresentation string
Hex string
}
func (c *Color) String() string {
return c.StringRepresentation
}
func newColorRegistry() *colorRegistry {
red := &Color{"red", "F00"}
green := &Color{"green", "0F0"}
blue := &Color{"blue", "00F"}
return &colorRegistry{
Red: red,
Green: green,
Blue: blue,
colors: []*Color{red, green, blue},
}
}
type colorRegistry struct {
Red *Color
Green *Color
Blue *Color
colors []*Color
}
func (c *colorRegistry) List() []*Color {
return c.colors
}
func (c *colorRegistry) Parse(s string) (*Color, error) {
for _, color := range c.List() {
if color.String() == s {
return color, nil
}
}
return nil, errors.New("couldn't find it")
}
func main() {
fmt.Printf("%s\n", Colors.List())
}
此时,确定它有效,但您可能不喜欢重复定义颜色的方式。如果此时你想要消除它,你可以在你的结构上使用标签并做一些反思来设置它,但希望这足以覆盖大多数人。
答案 6 :(得分:5)
有一种使用struct名称空间的方法。
好处是所有枚举变量都在特定的命名空间下以避免污染。
问题是我们只能使用var
不能使用const
type OrderStatusType string
var OrderStatus = struct {
APPROVED OrderStatusType
APPROVAL_PENDING OrderStatusType
REJECTED OrderStatusType
REVISION_PENDING OrderStatusType
}{
APPROVED: "approved",
APPROVAL_PENDING: "approval pending",
REJECTED: "rejected",
REVISION_PENDING: "revision pending",
}
答案 7 :(得分:3)
我确信我们在这里有很多不错的答案。但是,我只是想增加使用枚举类型的方式
package main
import "fmt"
type Enum interface {
name() string
ordinal() int
values() *[]string
}
type GenderType uint
const (
MALE = iota
FEMALE
)
var genderTypeStrings = []string{
"MALE",
"FEMALE",
}
func (gt GenderType) name() string {
return genderTypeStrings[gt]
}
func (gt GenderType) ordinal() int {
return int(gt)
}
func (gt GenderType) values() *[]string {
return &genderTypeStrings
}
func main() {
var ds GenderType = MALE
fmt.Printf("The Gender is %s\n", ds.name())
}
到目前为止,这是我们可以创建枚举类型并在Go中使用的惯用方法之一。
编辑:
添加使用常量枚举的另一种方式
package main
import (
"fmt"
)
const (
// UNSPECIFIED logs nothing
UNSPECIFIED Level = iota // 0 :
// TRACE logs everything
TRACE // 1
// INFO logs Info, Warnings and Errors
INFO // 2
// WARNING logs Warning and Errors
WARNING // 3
// ERROR just logs Errors
ERROR // 4
)
// Level holds the log level.
type Level int
func SetLogLevel(level Level) {
switch level {
case TRACE:
fmt.Println("trace")
return
case INFO:
fmt.Println("info")
return
case WARNING:
fmt.Println("warning")
return
case ERROR:
fmt.Println("error")
return
default:
fmt.Println("default")
return
}
}
func main() {
SetLogLevel(INFO)
}
答案 8 :(得分:2)
这里有一个例子,当有许多枚举时将被证明是有用的。它使用Golang中的结构,并利用面向对象的原理将它们整齐地捆绑在一起。添加或删除新枚举时,基础代码都不会更改。该过程是:
enumeration items
定义一个枚举结构: EnumItem 。它具有整数和字符串类型。enumeration
定义为enumeration items
的列表:枚举 enum.Name(index int)
:返回给定索引的名称。enum.Index(name string)
:返回给定索引的名称。enum.Last()
:返回上一个枚举的索引和名称以下是一些代码:
type EnumItem struct {
index int
name string
}
type Enum struct {
items []EnumItem
}
func (enum Enum) Name(findIndex int) string {
for _, item := range enum.items {
if item.index == findIndex {
return item.name
}
}
return "ID not found"
}
func (enum Enum) Index(findName string) int {
for idx, item := range enum.items {
if findName == item.name {
return idx
}
}
return -1
}
func (enum Enum) Last() (int, string) {
n := len(enum.items)
return n - 1, enum.items[n-1].name
}
var AgentTypes = Enum{[]EnumItem{{0, "StaffMember"}, {1, "Organization"}, {1, "Automated"}}}
var AccountTypes = Enum{[]EnumItem{{0, "Basic"}, {1, "Advanced"}}}
var FlagTypes = Enum{[]EnumItem{{0, "Custom"}, {1, "System"}}}
答案 9 :(得分:2)
重构 https://stackoverflow.com/a/17989915/863651 使其更具可读性:
package SampleEnum
type EFoo int
const (
A EFoo = iota
C
T
G
)
type IEFoo interface {
Get() EFoo
}
func(e EFoo) Get() EFoo { // every EFoo must fulfill the IEFoo interface
return e
}
func(e EFoo) otherMethod() { // "private"
//some logic
}