猿问

关于 Golang 中 []byte 和 string 转换的技术问题

从stringto转换为[]byte分配新内存是真的吗?另外,从[]byteto转换是否会string分配新的内存?


 s := "a very long string"

 b := []byte(s) // does this doubled the memory requirement?


 b := []byte{1,2,3,4,5, ...very long bytes..}

 s := string(b) // does this doubled the memory requirement?


ITMISS
浏览 250回答 1
1回答
随时随地看视频慕课网APP

相关分类

Go
我要回答