gpt4 book ai didi

go - 如何在 Go 中将 [Size]byte 转换为字符串?

转载 作者:IT老高 更新时间:2023-10-28 13:06:38 25 4
gpt4 key购买 nike

我在执行 md5.Sum() 后得到了一个大小合适的字节数组。

data := []byte("testing")
var pass string
var b [16]byte
b = md5.Sum(data)
pass = string(b)

我得到错误:

cannot convert b (type [16]byte) to type string

最佳答案

您可以将其称为 slice :

pass = string(b[:])

关于go - 如何在 Go 中将 [Size]byte 转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26072921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com