📅  最后修改于: 2023-12-03 15:05:42.621000             🧑  作者: Mango
在 golang 中,我们经常需要将数字转换为字节切片,其中 uint64 变量是一个常见的数字类型。下面是关于如何将 uint64 转成字节的详细介绍。
可以使用 golang 自带的 binary 包将 uint64 转换为字节切片。 使用 binary 包,您需要使用 buffer 和 binary.Write 函数来将数字写入 buffer,并最终将 buffer 转换为字节切片。
下面是一个示例代码:
package main
import (
"bytes"
"encoding/binary"
"fmt"
)
func main() {
num := uint64(123456789)
buf := new(bytes.Buffer)
err := binary.Write(buf, binary.LittleEndian, &num)
if err != nil {
fmt.Println("binary.Write failed:", err)
return
}
b := buf.Bytes()
fmt.Printf("%d converted to %d bytes: % x\n", num, len(b), b)
}
输出结果:
123456789 converted to 8 bytes: 15 cd 5b 07 00 00 00 00
还可以使用 golang 自带的 strconv 包将 uint64 转换为字节切片。 使用 strconv 包,您需要使用 strconv.FormatUint 函数将数字转换为字符串,并使用 []byte 转换为字节切片。
下面是一个示例代码:
package main
import (
"fmt"
"strconv"
)
func main() {
num := uint64(123456789)
b := []byte(strconv.FormatUint(num, 10))
fmt.Printf("%d converted to %d bytes: % x\n", num, len(b), b)
}
输出结果:
123456789 converted to 9 bytes: 31 32 33 34 35 36 37 38 39
上述两种方法都可以将 uint64 转换为字节切片,选择哪种方法取决于您的代码需求。 如果您需要 binary 或者网络字节序,使用方法一更为方便; 如果您需要字符串格式的字节切片,使用方法二更为合适。