GO语言"strconv"包中"FormatUint"函数的用法及代码示例。
用法:
func FormatUint(i uint64, base int) string
FormatUint 返回 i 在给定基数中的字符串表示形式,即 2 <= base <= 36。结果使用小写字母 'a' 到 'z' 表示数字值 >= 10。
例子:
package main
import (
"fmt"
"strconv"
)
func main() {
v := uint64(42)
s10 := strconv.FormatUint(v, 10)
fmt.Printf("%T, %v\n", s10, s10)
s16 := strconv.FormatUint(v, 16)
fmt.Printf("%T, %v\n", s16, s16)
}
输出:
string, 42 string, 2a
相关用法
- GO FormatMediaType用法及代码示例
- GO FormatBool用法及代码示例
- GO FormatFloat用法及代码示例
- GO FormatInt用法及代码示例
- GO Fscanln用法及代码示例
- GO Float.SetString用法及代码示例
- GO FileServer用法及代码示例
- GO FieldsFunc用法及代码示例
- GO Fprintln用法及代码示例
- GO Float64s用法及代码示例
- GO Fprintf用法及代码示例
- GO Fprint用法及代码示例
- GO Floor用法及代码示例
- GO Float64sAreSorted用法及代码示例
- GO Float.Scan用法及代码示例
- GO FileMode用法及代码示例
- GO FullRune用法及代码示例
- GO FullRuneInString用法及代码示例
- GO Float.Add用法及代码示例
- GO Func用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 FormatUint。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。