Go 语言的 strconv 包中有一个非常常用的函数 FormatInt
,该函数是用来实现整数转字符串的。通过这个函数,我们可以将一个整数类型的数据转化为字符串类型的数据。本文将深入探讨 Go 语言文档中的 strconv.FormatInt
函数的实现及其使用方法。
FormatInt
函数的语法
FormatInt
函数有 3 个参数,分别为:
func FormatInt(i int64, base int) string
其中,i
表示需要转换的整数,base
表示源数字的进制数,最终返回的是 i
的字符串形式。
FormatInt
函数的实现及用法
下面我们以代码示例的方式来详细说明 FormatInt
函数的实现及其使用方法:
package main
import (
"fmt"
"strconv"
)
func main() {
// 十进制整数转字符串
i := int64(12345)
str := strconv.FormatInt(i, 10)
fmt.Printf("The integer %v after conversion is %v (type: %T)
", i, str, str)
// 二进制整数转字符串
i2 := int64(12345)
str2 := strconv.FormatInt(i2, 2)
fmt.Printf("The integer %v after conversion is %v (type: %T)
", i2, str2, str2)
}
代码输出结果:
The integer 12345 after conversion is 12345 (type: string)
The integer 12345 after conversion is 11000000111001 (type: string)
从上述代码可以看出可以通过设置 base
参数实现不同进制的整数转字符串。例如,在第一个转换中,我们将一个十进制整数(i=12345
)转换为字符串类型,并将其结果打印到控制台上。在第二个转换中,我们将同样的整数(i2=12345
)转换为二进制字符串,同样将其结果打印到控制台上。
值得注意的是,FormatInt
函数的使用不仅局限于十进制和二进制的转换,还可以进行八进制或十六进制的转换,只需要将 base
参数设置相应的进制数即可。
总结
本文详细介绍了 Go 语言文档中的 strconv.FormatInt
函数的实现方法及用法。FormatInt
函数是 Go 语言中常用的字符串转换函数之一,可以将整数类型的数据转化为字符串类型的数据。对于深入理解 Go 语言字符串操作及其源码,本文希望可以帮助读者更好地掌握 Go 语言相关知识。