#### golang的常量使用关键字const来定义,可以是文件内部的,也可以是函数内部的
回顾一下,变量使用var关键字定义,常量就是用const关键字定义,特别注意,一定要有const关键字才能定义常量
```
const (
goldenPoint float64 = 0.618
dota string = "TI"
)
func consts() {
const pi float64 = 3.14
fmt.Println(pi)
fmt.Println(goldenPoint, dota)
}
```
const的数值可以当作数值使用
#### golang没有特别的枚举类型,但是提供了一个iota关键字来定义枚举的数字,然后用一组const来定义
```
func enums() {
const (
one = 1
two = 2
three = 3
)
fmt.Println(one, two, three)
fmt.Println("第二种方式进行枚举(iota):")
const (
b = 1 << (10 * iota)
kb
mb
gb
//tb
// 如果我们不想要枚举中的某个值,我们直接用占位符_取代
_
pb
)
fmt.Println("kb = ", kb)
fmt.Println("pb = ", pb)
}
```
有疑问加站长微信联系(非本文作者))