常量定义使用关键字const和c,c++一样,可以不指定类型
const a int=10 const b=11 const c="hello" const d string ="world"
但是因为golang没有枚举,我们可以使用常量来定义一个枚举类型
type DatatType int32
const(
Sunday DataType=0
Monday DataType=1
)
常量定义使用关键字const和c,c++一样,可以不指定类型
const a int=10 const b=11 const c="hello" const d string ="world"
但是因为golang没有枚举,我们可以使用常量来定义一个枚举类型
type DatatType int32
const(
Sunday DataType=0
Monday DataType=1
)