我有一个大小的字节数组,我在做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
我找到了这个问题的解决方案
改成:
pass = string(b[:])
但是为什么不能这样使用呢?
pass = string(b)
HUWWW
相关分类