Cannot open include file: 'stdafx.h': No such file or directory

在VC++编译时出现这个问题,删掉也不行

这个 文件是需要你提供的,不是系统文件
我估计你没有 按照正确的方法建立工程,而是直接拷贝别人代码来试的,这是不行的
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-12-20
项目属性 -> c/c++ -> 预编译头文件 在右边的选项中选择不使用预编译头
我的是英文版,不知道翻译的对不对,你参照吧

...Cannot open include file: 'stdafx.h': No such file or directory...
Cannot open include file: 'stdafx.h': No such file or directory.这句英文的意思是,不能预定义stdafx.h 没有如此文件或目录。意思是:1,你把这个stdafx.h 头文件写错了,仔细检查一下这个是否写错了。2,可能是你的编译器中没有这个头文件,你可以从别人的编译器中拷贝一个 到你的编译器...

...Cannot open include file: 'StdAfx.h': No such file or directory...
意思是:“无法打开包含文件:'stdafx.h',因为没有这个文件或者这个目录。”

...Cannot open include file: 'stdafx.h': No such file or directory...
手机版 我的知道 C语言编程问题出现错误Cannot open include file: 'stdafx.h': No such file or directory大家帮帮忙吧 10 #include"stdafx.h"#include<stdio.h>#include<math.h>#include<stdlib.h>#include<graphics.h>#include<conio.h>#defineN1000\/*定义复数类型*\/typedefstruct{doublereal;doubleimg;}...

...Cannot open include file: 'stdafx.h': No such file or directory...
1)把 #include <stdafx.h> 去掉好啦,不影响的。这个是建一个自动工程时自动生成的,不用也可以。2)另外一种解决方法:你新建一个工程,选择默认的选项,然后你的工程里面就有这个头文件(#include <stdafx.h>)啦 求采纳为满意回答。

Cannot open include file: 'stdafx.h': No such file or directory...
stdafx.h 这是VC自带的功能,每个application都有,且必须有。若不小心删了,可以自己重新写一个,内容就写 include <stdio.h> 够了。还有,千万不能删除#include "stdafx.h"这句话。因为 VC必须从这里开始运行,若找不到它,编译不会通过,因为它和main()函数一样,是文件开始端口。因此它被称...

...Cannot open include file: 'stdafx.h': No such file or directory...
include <stdafx.h> 改成 include “stdafx.h” 看看 <>表示在系统文件夹下搜索,“”在本地文件夹下搜索 如果本地木有这个文件,那就把这行删掉吧

Cannot open include file: 'stdafx.h': No such file or directory...
stdafx.h”头文件,用来包含C、C++、Windows头文件,或者其他一些不经常变化的头文件,以加快编译速度。如果你在新建项目的时候选择了“空项目”的话,就不会生成这个文件,你可以自己新建一个stdafx.h文件,并写上#include “stdafx.h",注意是引号不是尖括号哦,也可以直接删除这一行。

...Cannot open include file: 'stdafx.h': No such file or directory...
不能打开include<文件:stdafx.h>没有这样的文件或目录 就是说,你这个程序的这行include<stdafx.h>错误了 这个是预编译头文件,你可能是直接复制粘贴然后运行的吧?可以直接删除,可能会少一点头文件,你可以在程序的首部定义一下简单的标准输入输出头文件试试看。C的话include<stdio.h> C++的话...

...Cannot open include file: 'stdafx.h': No such file or directory...
不能打开include<文件:stdafx.h>没有这样的文件或目录 就是说,你这个程序的这行include<stdafx.h>错误了 这个是预编译头文件,你可能是直接复制粘贴然后运行的吧?可以直接删除,可能会少一点头文件,你可以在程序的首部定义一下简单的标准输入输出头文件试试看。C的话include<stdio.h> C++的话...

...Cannot open include file: 'stdafx.h': No such file or directory...
新建工程时向导有个“预编译头文件”,这个选项里的对号不要取消,生成工程时不要选“空工程”,这个文件不会自动生成,就不会出现这个错误提示了。

相似回答