1. ホーム
  2. c++

[解決済み] strcpy' と 'strcpy_s' の違い?

2022-01-28 18:28:34

質問内容

を使おうとすると strcpy を使用して文字列をコピーすると、コンパイルエラーが発生しました。

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

とはどのような違いがあるのでしょうか? 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.