' strcpy'之间的区别和' strcpy_s'?

时间:2015-08-21 08:51:51

标签: c++ windows visual-c++

当我尝试使用strcpy复制字符串时,它给了我一个编译错误。

error C4996 'strcpy': This function or variable may be unsafe.

请考虑使用strcpy_s。要禁用弃用, 使用_CRT_SECURE_NO_WARNINGS。有关详细信息,请参阅在线帮助。

strcpystrcpy_s之间的区别是什么?

2 个答案:

答案 0 :(得分:18)

strcpy是一种不安全的功能。 当您尝试使用strcpy()将字符串复制到一个不足以容纳它的缓冲区时,它将导致缓冲区溢出。

strcpy_s()是strcpy()的安全增强版。 使用strcpy_s,您可以指定目标缓冲区的大小,以避免在复制期间缓冲区溢出。

char tuna[5];  // a buffer which holds 5 chars incluing the null character.
char salmon[] = "A string which is longer than 5 chars";

strcpy( tuna, salmon ); // This will corrupt your memory because of the buffer overflow.

strcpy_s( tuna, 5, salmon ); // strcpy_s will not write more than 5 chars.

答案 1 :(得分:1)

我想补充一点,如果您尝试编译其他人的代码,MS将始终抱怨标准库中的不安全功能。只需定义_CRT_SECURE_NO_WARNINGS就像错误消息告诉你的那样,MSVC将像任何其他编译器一样工作。