下面这段代码输出什么?
const (
	a = iota
	b = iota
)
const (
	name = "name"
	c    = iota
	d    = iota
)
func main() {
	fmt.Println(a)
	fmt.Println(b)
	fmt.Println(c)
	fmt.Println(d)
}
答案解析:
参考答案及解析:0 1 1 2。
知识点:iota 的用法。
iota 是 golang 语言的常量计数器,只能在常量的表达式中使用。
iota 在 const 关键字出现时将被重置为0,const中每新增一行常量声明将使 iota 计数一次。
Reference: https://studygolang.com/articles/2192
const (
        x = iota
        _
        y
        z = "zz"
        k
        p = iota)
func main()  {
        fmt.Println(x,y,z,k,p)}
iota为Go中的常量计数器,同时会在const关键字出现时被重置为0。可以把iota理解为const语句块中的行索引,所以p的值为5
执行上一行的表达式
0 2 zz zz 5



