golang中`iota`的全称是什么?

sch*_*acs 14 go

作为标题,iotagolang中的全名是什么(不是用法):

const (  // iota is reset to 0
    c0 = iota  // c0 == 0
    c1 = iota  // c1 == 1
    c2 = iota  // c2 == 2
)
Run Code Online (Sandbox Code Playgroud)

Ale*_*hov 24

这本身就是全名."iota"是希腊字母表中的字母.这是典型的数学符号:

您也可以在其他编程语言中找到它(参见Scheme中的iota).

  • 此外,它是[根据维基词典的英文名词](https://en.wiktionary.org/wiki/iota#Noun):"一个小记录;一个非常小的,不可忽视的数量." (3认同)