1. strcov包中的 Itoa
和Atoi
- Itoa (用于将整数转换为字符串)
来源:早期c语言中没有string类型而是用字符数组array表示字符串,所以 Itoa 是缩写于Int to Array
- Atoi(用于将字符串转换为整数)
来源:Array to Int
2. iota
iota是golang语言的常量计数器,只能在常量的表达式中使用
标签:Itoa,Int,字符串,Atoi,go,iota From: https://www.cnblogs.com/shiding/p/16920715.html