gpt4 book ai didi

go - 将字符串解析为枚举的最佳方法

转载 作者:行者123 更新时间:2023-12-05 01:28:29 25 4
gpt4 key购买 nike

我有一个枚举如下

type Capability int

const (
Read Capability = iota // Read = 0
Create // Create = 1
Update // Update = 2
Delete // Delete = 3
List // List = 4
)

我希望能够从枚举中获取字符串表示同时解析字符串以获取枚举。

我从枚举中获取字符串,如下所示。


capabilityStrs := []string{"read", "create", "update", "delete", "list"}
func (c Capability) String() string {
return capabilityStrs[c]
}

我如何将一个字符串解析为一个枚举,以便调用 ParseSTring("read") 给我 Read`。解决此问题的最佳方法是什么?

最佳答案

根据@super的评论回答

var (
capabilitiesMap = map[string]Capability{
"read": Read,
"create": Create,
"update": Update,
"delete": Delete,
"list": List,
}
)
func ParseString(str string) (Capability, bool) {
c, ok := capabilitiesMap[strings.ToLower(str)]
return c, ok
}

关于go - 将字符串解析为枚举的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68543604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com