Golang 如何使用strconv.FormatUint()函数
Go语言提供了内置支持,以通过 strconv 包实现基本数据类型的字符串表示形式与转换。该包提供了一个 FormatUint()函数 ,用于以给定的进制(2 ≤ base ≤ 36)返回x的字符串表示形式。
在这里,结果对于数字值大于等于10的情况使用小写字母’a’到’z’的字母表示。要使用FormatUint()函数,您需要使用import关键字在程序中导入strconv包。
语法:
func FormatUint(x uint64, base int) string
参数: 此函数接受两个参数,即x和base。
返回值: 此函数返回以给定的基数(2 ≤ base ≤ 36)表示的x的字符串表示形式。
示例1:
// Golang程序演示
// strconv.FormatUint()函数
package main
import (
"fmt"
"strconv"
)
func main() {
// 在给定的基础上查找给定值的字符串表示形式
// 使用FormatUint()函数
fmt.Println(strconv.FormatUint(11, 2))
fmt.Println(strconv.FormatUint(24, 10))
}
输出:
1011
24
示例2:
// Golang程序演示
// strconv.FormatUint()函数
package main
import (
"fmt"
"strconv"
)
func main() {
// 在给定的基础上查找给定值的字符串表示形式
// 使用FormatUint()函数
val1 := uint64(25)
res1 := strconv.FormatUint(val1, 2)
fmt.Printf("Result 1: %v", res1)
fmt.Printf("\nType 1: %T", res1)
val2 := uint64(20)
res2 := strconv.FormatUint(val2, 16)
fmt.Printf("\nResult 2: %v", res2)
fmt.Printf("\nType 2: %T", res2)
}
输出:
Result 1: 11001
Type 1: string
Result 2: 14
Type 2: string