golang strconv Atoi Itoa 例子

DarkWingBoy ·
April
http://books.studygolang.com/gopl-zh/index.html
那么string()和strconv.Itoa的区别是什么呢?
#1
更多评论
April
http://books.studygolang.com/gopl-zh/index.html
`string()`好像是可以把`[]byte`或`ASCII`转为字符串,`strconv.Itoa`好像就是把数字转为字符串; 如果遇到一个`ASCII`的数字,使用`strconv.Itoa`是不能进行转换成字母或字符串的;
#2