首页 > 其他分享 >iota

iota

时间:2022-09-24 18:01:59浏览次数:45  
标签:语句 const fmt 索引 Println iota

iota是一个常量计数器,只能在常量的表达式中使用,iota可理解为const语句块中的行索引。
const中每新增一行常量声明将使iota计数一次,默认为0第二行为1第三行为2以此类推

const(
	a = iota
	b
	c
	d
)
func main()
{
	fmt.Println(a)//0
	fmt.Println(b)//1
	fmt.Println(c)//2
	fmt.Println(d)//3
}
const(
	a = iota //0
	b	//1
	c	//2
	d = 10	//10
	e = 12	//12
	f = iota //5
	g	//6
	h	//7
)

iota是const语句块中的行索引,而不是变量索引,其计数只与const语句块中的行数相关

const(
	a1,a2=iota+1,iota+2//此时iota为0,输出1,2
	a3,a4=iota+1,iota+2//此时iota为1,输出2,3
	a5,a6=7,8//输出7,8
	a7,a8=iota+3,iota+5//此时iota为3,输出6,8
)

标签:语句,const,fmt,索引,Println,iota
From: https://www.cnblogs.com/9men/p/16726109.html

相关文章

  • 常量与iota
    packagemainimport"fmt"//const来定义枚举类型const(//可以在const()添加一个关键字iota,每行的iota都会累加1,第一行的iota的默认值是0BEIJING=10......