WEB开发网
开发学院软件开发VC 排除 vs2005 中的不安全函数警告 阅读

排除 vs2005 中的不安全函数警告

 2008-11-12 19:27:50 来源:WEB开发网   
核心提示:下面的代码:#include <stdio.h>#include <minmax.h>int main( ){int a,b,c;scanf("%d,%d",&a,&b);c=max(a,b);printf("max=%d",c);return 0;}使用

下面的代码:

#include <stdio.h>
#include <minmax.h>
int main( )
{
  int a,b,c;
  scanf("%d,%d",&a,&b);
  c=max(a,b);
  printf("max=%d",c);
  return 0;
}

使用vs2005编译时会遇到这样一个warning: warning C4996: 'scanf' was declared deprecated

其实 warning C4996的详细含义就是:'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.翻译过来,就是scanf的声明在VS2005中被认为是不安全的,让你使用scanf_S来代替。

知道了原因,那解决就方便了,只要在#include <stdio.h>前面添加#define _CRT_SECURE_NO_DEPRECATE 或者 scanf函数修改为scanf_s即可。具体如下:

#define _CRT_SECURE_NO_DEPRECATE
#include <stdio.h>
#include <minmax.h>
int main( )
{
  int a,b,c;
  scanf("%d,%d",&a,&b);
  c=max(a,b);
  printf("max=%d",c);
  return 0;
}

或者

#include <stdio.h>
#include <minmax.h>
int main( )
{
  int a,b,c;
  scanf_s("%d,%d",&a,&b);
  c=max(a,b);
  printf("max=%d",c);
  return 0;
}

Tags:排除 vs 安全

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接