标签:ring str tostring [] golang hello bytes targe ola
1 src := []byte("Hello") 2 encodedStr := hex.EncodeToString(src) 3 // 注意"Hello"与"encodedStr"不相等,encodedStr是用字符串来表示16进制
1 test, _ := hex.DecodeString(encodedStr) 2 fmt.Println(bytes.Compare(test, src)) // 0
原文:ttps://blog.csdn.net/jason_cuijiahui/article/details/79418557
Golang中的[]byte与16进制(String)之间相互转换
标签:ring str tostring [] golang hello bytes targe ola
原文地址:https://www.cnblogs.com/leaves1024/p/8985261.html