import (
"fmt"
"strconv"
)
func main() {
age := 21
judge := true
fmt.Println("我" + strconv.Itoa(age) + "岁是" + strconv.FormatBool(judge) + "的")
}
go的toString
于 2022-03-03 20:34:50 首次发布
import (
"fmt"
"strconv"
)
func main() {
age := 21
judge := true
fmt.Println("我" + strconv.Itoa(age) + "岁是" + strconv.FormatBool(judge) + "的")
}