问题描述
i := 123
s := string(i)
s 是E",但我想要的是123"
s is 'E', but what I want is "123"
请告诉我如何获得123".
Please tell me how can I get "123".
而在 Java 中,我可以这样做:
And in Java, I can do in this way:
String s = "ab" + "c" // s is "abc"
concat
concat
推荐答案
strconvItoa
例如:
package main
import (
"strconv"
"fmt"
)
func main() {
t := strconv.Itoa(123)
fmt.Println(t)
}
+strings
+Joinstrings
这篇关于如何在 Go 中将 int 值转换为字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!