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

const (  // iota is reset to 0
    c0 = iota  // c0 == 0
    c1 = iota  // c1 == 1
    c2 = iota  // c2 == 2
)

最佳答案

那是全名。 “iota”是希腊字母的字母。这是典型的数学符号:

  • 作为总数和算法中的迭代器
  • 作为subscript index
  • 代表imaginary part of complex numbers

  • 您也可以在其他编程语言中找到它(请参阅iota in Scheme)。

    关于go - golang中 `iota`的全名是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31650192/

    10-12 22:54