如何打印" enum"的字符串表示形式在Go?

时间:2015-05-11 20:45:57

标签: go enums printf

我已经查看了各种官方消息来源,但我无法找到它。想象一下,你有以下枚举(我知道golang没有经典意义上的枚举):

package main

import "fmt"

type LogLevel int

const (
    Off LogLevel = iota
    Debug
)

var level LogLevel = Debug

func main() {
    fmt.Printf("Log Level: %s", level)
}

我可以通过以上%s得到最接近的,这给了我:

Log Level: %!s(main.LogLevel=1)

我想:

Log Level: Debug

任何人都可以帮助我吗?

2 个答案:

答案 0 :(得分:9)

您不能直接使用该语言,但有一种生成支持代码的工具:golang.org/x/tools/cmd/stringer

来自stringer文档

中的示例
type Pill int

const (
    Placebo Pill = iota
    Aspirin
    Ibuprofen
    Paracetamol
    Acetaminophen = Paracetamol
)

会产生类似

的代码
const _Pill_name = "PlaceboAspirinIbuprofenParacetamol"

var _Pill_index = [...]uint8{0, 7, 14, 23, 34}

func (i Pill) String() string {
    if i < 0 || i+1 >= Pill(len(_Pill_index)) {
        return fmt.Sprintf("Pill(%d)", i)
    }
    return _Pill_name[_Pill_index[i]:_Pill_index[i+1]]
}

答案 1 :(得分:-2)

这对我有用:

level_str = fmt.SPrintf("%s", level)