📌  相关文章
📜  如何在 Golang 中使用 strconv.FormatUint()函数?

📅  最后修改于: 2021-10-25 02:21:23             🧑  作者: Mango

Go 语言提供内置支持,以通过strconv Package实现基本数据类型的字符串表示的转换。这个包提供了一个FormatUint()函数,用于返回给定基数中 x 的字符串表示,即 2 <= base <= 36。
这里,结果使用小写字母 ‘a’ 到 ‘z’ 表示大于等于 10 的数字值。要访问 FormatUint()函数,您需要借助 import 关键字在程序中导入 strconv Package。

句法:

func FormatUint(x uint64, base int) string

参数:该函数有两个参数,即x 和base。

返回值:该函数返回给定基数中 x 的字符串表示,即 2 <= base <= 36。

示例 1:

// Golang program to illustrate
// strconv.FormatUint() Function
package main
  
import (
    "fmt"
    "strconv"
)
  
func main() {
    // Finding the string representation
    // of given value in the given base
    // Using FormatUint() function
    fmt.Println(strconv.FormatUint(11, 2))
    fmt.Println(strconv.FormatUint(24, 10))
  
}

输出:

1011
24

示例 2:

// Golang program to illustrate
// strconv.FormatUint() Function
package main
  
import (
    "fmt"
    "strconv"
)
  
func main() {
  
    // Finding the string representation
    // of given value in the given base
    // Using FormatUint() function
    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