go语言如何把int转为字符串
时间:2021-02-04 14:10
go语言把int转为字符串的方法:【fmt.Println(strconv.Itoa(100))】。如果要把字符串转为整形,可以使用【i, _ := strconv.Atoi("100") fmt.Println(i)】。 本文操作环境:windows10系统、Go 1.11.2、thinkpad t480电脑。 整形转字符串 该方法的源码是: 可以看出是FormatInt方法的简单实现。 字符串转整形 相关推荐:golang教程 以上就是go语言如何把int转为字符串的详细内容,更多请关注gxlsystem.com其它相关文章!fmt.Println(strconv.Itoa(100))
// Itoa is shorthand for FormatInt(i, 10).
func Itoa(i int) string {
return FormatInt(int64(i), 10)
}
i, _ := strconv.Atoi("100")
fmt.Println(i)