go語言把int轉為字串的方法:1、透過「fmt.Println(strconv.Itoa(100))」實現整數轉字串;2、透過「i, _ := strconv .Atoi("100") fmt.Println(i)」實作字串轉整型即可。
本文操作環境:windows10系統、Go 1.11.2、thinkpad t480電腦。
go語言如何把int轉為字串?
整形轉字串
fmt.Println(strconv.Itoa(100))
此方法的原始碼是:
// Itoa is shorthand for FormatInt(i, 10). func Itoa(i int) string { return FormatInt(int64(i), 10) }
可以看出是FormatInt方法的簡單實作。
字串轉整形
i, _ := strconv.Atoi("100") fmt.Println(i)
相關推薦:golang教學
#以上是go語言如何把int轉為字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!