首页 > 代码库 > 将一段含有0的字符数组赋给string

将一段含有0的字符数组赋给string

string有个成员函数,assign()

可以这样:

1 string str;2 str.assign(temp, sizeof(temp));