我已经查看了各种官方资料,了解如何执行此操作,但找不到。假设您有以下枚举(我知道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
谁能帮我?
最佳答案
您不能直接在该语言中使用,但是有一个用于生成支持代码的工具: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]]
}
关于go - 如何在Go中打印 “enum”的字符串表示形式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30177344/