string的c_str函数很怪异很危险, 先来看一个简单的例子:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s = "abc";
const char *p = s.c_str();
cout << p << endl; // abc
s = "xyz";
cout << p << endl; // 居然是xyz
return 0;
}
看看吧, c_str确实很怪异,
网上有很多网友遇到类似更多的问题, 久久才定位出来。 我们看看, 那要怎么搞才能避免类似错误呢? 我们可以考虑进行如下修改:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s = "abc";
char szStr[1024] = {0};
strncpy(szStr, s.c_str(), sizeof(szStr) - 1); // 强烈建议拷贝出来
const char *p = szStr;
cout << p << endl; // abc
s = "xyz";
cout << p << endl; // abc
return 0;
}