0
我是Golang的新手,所以我在玩一些算法,並且遇到了一些問題。 在java中的插入字符數組的端線,我可以這樣做:Golang字符串結束字符
String str = "Mr John Smith ";
char[] arr = str.toCharArray();
arr[12] = '\0';
但Golang我想是這樣的:
str := []byte("Mr John Smith ")
str[12] = '\0'
但這代碼沒有工作
可能的副本吃了[有沒有辦法在Go中創建以null結尾的字符串?](http://stackoverflow.com/questions/38007361/is-there-anyway-to-create-null-terminated-string-in-go/38008565# 38008565) – icza