Atoi

原型:func Atoi(s string) (int, error)
解释:将给定字符串 s 转换为十进制的 int 类型,转换失败时 error != nil

Itoa

原型:func Itoa(i int) string
解释:将 int 类型数字 i 转换为字符串。