作为标题,golang中iota
的全名是什么(不是用法):
const ( // iota is reset to 0
c0 = iota // c0 == 0
c1 = iota // c1 == 1
c2 = iota // c2 == 2
)
最佳答案
那是全名。 “iota”是希腊字母的字母。这是典型的数学符号:
您也可以在其他编程语言中找到它(请参阅iota in Scheme)。
关于go - golang中 `iota`的全名是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31650192/