在我的项目中,我已禁用预编译的标头。 以下是代码示例..
#include <stdio.h>
#include <conio.h>
#include "Getfilelist.h"
using namespace std;
int main()
{
Getfilelist fl;
int i = fl.GetFList("J:\\EDUCATION\\Mine\\seminar\\seminar-1");
getch();
return 0;
}
当我使用&#34;使用命名空间std;&#34;正在显示错误
error c2871: 'std' a namespace with this name does not exist
答案 0 :(得分:2)
您应该#include <cstdio>
代替。