[]byte与字符串之间相互转换,【链接】Go语言string,int,int64,float之间类型转换方法

一个介绍strconv库很好的博客(转化为字符串)
https://blog.csdn.net/li_101357/article/details/80252653
golang标准库文档
https://studygolang.com/pkgdoc

1:string 转为[]byte

var data []byte = []byte(str)    

2:[]byte转为string

var str string = string(data[:])  // HELLO

【链接】Go语言string,int,int64,float之间类型转换方法
https://www.jb51.net/article/119164.htm

你可能感兴趣的:([]byte与字符串之间相互转换,【链接】Go语言string,int,int64,float之间类型转换方法)