我有一个自定义数据类型
type Custom string
还有一个 const 块
const (
Item1 = "placeholder"
...
Item10 = "placeholder"
)
是否可以为 const 块中的每个项目设置自定义类型,而不必将其放置在每个条目中?
BIG阳
相关分类