C++ strcat 函数实现字符串拼接报错

C++中,使用cstring 中 strcat 函数实现字符串拼接,报错:

error C4996: 'strcat': This function or variable may be unsafe. 
Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

代码:

#include<iostream>
#include<cstring>
using namespace std;
char first_name[20]{ 0 };
char last_name[10]{ 0 };
cout << "What is your first name?" << endl;
cin.getline(first_name, 20);
cout << "What is your last name?" << endl;
cin.getline(last_name, 10);

// 使用 cstring 中的函数 strcat 拼接字符串
char result[50]{ 0 };
strcat(result, last_name);
strcat(result, ",");
strcat(result, " ");
strcat(result, first_name);
cout << result << endl;

说明:strcat函数不安全,已弃用
char * strcat ( char * destination, const char * source );

  • 参数destination:指向目标数组的指针
  • 参数source :要追加的字符串指针
    因为再程序动态运行时,程序无法确定 destination 是否足够大,能够满足追加其他字符串,如果不满足,就会出现缓冲区溢出,有可能将目标字符串的数据覆盖掉,这种情况是神危险的。

解决方法:

  • 禁用弃用:解决方案→右键→属性→配置属性→C/C++→预处理器→配置_CRT_SECURE_NO_WARNINGS
  • 改用微软提供的 strcat_s函数,但是该函数不支持跨平台
	char first_name[20]{ 0 };
	char last_name[10]{ 0 };
	cout << "What is your first name?" << endl;
	cin.getline(first_name, 20);
	cout << "What is your last name?" << endl;
	cin.getline(last_name, 10);

	// 使用 cstring 中的函数 strcat 拼接字符串
	char result[50]{ 0 };
	strcat_s(result, last_name);
	strcat_s(result, ",");
	strcat_s(result, " ");
	strcat_s(result, first_name);
	cout << result << endl;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值