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; // 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;
}


        最后, 我还是要强调一下:标准string中c_str的实现很怪异, 希望大家用的时候一定要小心, 强烈建议用strncpy拷贝出来, 拷贝出来, 然后你爱用咋用。





评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值