‘strcpy‘: This function or variable may be unsafe. Consider using strcpy_s instead

练习c时遇到:strcpy: This function or variable may be unsafe. Consider using strcpy_s instead 报错的代码: st

练习c++时遇到:'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead

报错的代码:

 strcpy(copyOfName, name.c_str());

大概意思是: strcpy是不安全的,建议使用strcpy_s代替

可以了解下strcpy和strcpy_s之间的差别.;

可修改为:

strcpy_s(copyOfName, name.size() + 1, name.c_str());

也可根据网上其他的解决方法修改vs的配置

发布者:admin,转转请注明出处:http://www.yc00.com/web/1738335878a4038851.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信