go 类型转换

func main() {
  s := "Hello"

  b := []byte(s)
  fmt.Println(len(b), cap(b))
fmt.Println(b)
}

5 8
[72 101 108 108 111]

 //字符串转换为字节

[]byte(s)
[]byte转换为 string 转换语法为string(bs)

 

posted on 2021-05-30 12:35  kevin_yang123  阅读(34)  评论(0编辑  收藏  举报