本文主要是介绍C++ string的c_str函数极易产生bug, 有陷阱, 请慎用---强烈建议用strncpy来拷贝c_str,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
string的c_str函数很怪异很危险, 先来看一个简单的例子:
#include <iostream>
#include <string>
using namespace std;int main()
{string s = "abc";const char *p = s.c_str();cout << p << endl; // abcs = "xyz";cout << p << endl; // 居然是xyzreturn 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; // abcs = "xyz";cout << p << endl; // abcreturn 0;
}
这篇关于C++ string的c_str函数极易产生bug, 有陷阱, 请慎用---强烈建议用strncpy来拷贝c_str的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!