我想为值创建一个带有多个常量类型的枚举(常量)。
package startup
type args string
type argsOptional string
const (
HELP args = "help" argsOptional = "h"
ABOUT args = "about"
)
我怎么做的? 我不能使用任何数组作为常量,所以我很困惑如何做到最好。
定义一个像在重复答案中提到的const数组不起作用,但仍然不是我想要的!:
type args = [...]string
const (
HELP args = [2]string {"help","h"}
)
不编译!