golang 数字转换为字符串
时间: 2024-01-03 19:04:24 浏览: 102
go-roman:Golang库来处理罗马数字
在Golang中,可以使用strconv.Itoa()函数将整数转换为字符串,也可以使用strconv.FormatInt()函数将整数转换为字符串。下面是两个例子:
1. 使用strconv.Itoa()函数将整数转换为字符串
```go
package main
import (
"fmt"
"strconv"
)
func main() {
num := 123
str := strconv.Itoa(num)
fmt.Println(str) // 输出:123
}
```
2. 使用strconv.FormatInt()函数将整数转换为字符串
```go
package main
import (
"fmt"
"strconv"
)
func main() {
num := int64(123)
str := strconv.FormatInt(num, 10)
fmt.Println(str) // 输出:123
}
```
阅读全文