const a,b int = 1,2
const a,b = 1,2
const (
a = "hello"
b,c =3,4
)
常量数值可作为各种类型使用
枚举类型的定义
普通枚举类型
a = 1
b = 2
c = 3
自增枚举类型
等价于 const(
a = iota
b
c