error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead解决方案

vs2012使用c语言函数fopen操作文件时报错:

错误  1   error C4996: 'fopen': This function or variable may be unsafe.
 Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.
  See online help for details.  c:\users\root\desktop\vc_pro\vc\tinyxml2\exam1\exam1.cpp    28  1   exam1

解决方案:
第一种是在使用fopen函数的源文件第一行增加:

#define _CRT_SECURE_NO_WARNINGS

第二种做法是更改VS2012项目配置:
项目 ->属性 -> c/c++ -> 预处理器 ,点击预处理器定义,加入_CRT_SECURE_NO_WARNINGS

posted on   岚之山  阅读(513)  评论(0编辑  收藏  举报

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示