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

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

考虑改用strcpy_s。要禁用弃用,
使用_CRT_SECURE_NO_WARNINGS。详细信息请参见在线帮助。
strcpystrcpy_s有什么区别?

最佳答案

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.

07-28 10:09