码迷,mamicode.com
首页 > 其他好文 > 详细

go 类型转换

时间:2021-06-02 17:04:01      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:字符   类型转换   pre   nbsp   print   int   UNC   col   color   

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)

 

go 类型转换

标签:字符   类型转换   pre   nbsp   print   int   UNC   col   color   

原文地址:https://www.cnblogs.com/kevin-yang123/p/14827678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!