Go语言将integer转换为string 0 By 董德多 on 2022年11月9日 Go package main import ( "fmt" "strconv" ) func main() { str := strconv.FormatInt(123, 10) fmt.Println(str) }输出:123 integer string