📌  相关文章
📜  go make string from char array - Go 编程语言 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:44:59.532000             🧑  作者: Mango

代码示例1
chars := []rune{'h','e','l','l','o'}
str := string(chars)
fmt.Println(str) // hello