关于strcpy函数

先看一个例子:

char* GetMemory(int num)

{

    return new char[num]; 

}


int main()

{

char* str = GetMemory(10);

char tmp[10];


/*

 虽然str和tmp的空间大小都为10,但是:

 The strcpy function copies strSource, including the terminating null character, 

 to the location specified by strDestination. No overflow checking is performed 

 when strings are copied or appended. The behavior of strcpy is undefined if the 

 source and destination strings overlap.

*/


strcpy(str, "12345678900000");


strcpy(tmp, "0123456789");


cout<<str<<endl;


cout<<tmp<<endl;


return 0;

}



无论strcpy的第一个参数是char*还是char数组,在字符串被拷贝的时候(或者添加的时候strcat)都不执行上溢出检测!

如果源和目的字符串重叠,则这个函数的行为是未定义的。


由于strcpy不检查空间的完备性,因而可能造成缓冲区越界。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值