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

前端之家收集整理的这篇文章主要介绍了golang中`iota`的全称是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
作为标题,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).

原文链接:https://www.f2er.com/go/186938.html

猜你在找的Go相关文章