新微赢技术网

标题: 找不到stdfax.h [打印本页]

作者: Iしovのyou    时间: 2009-11-4 00:14
标题: 找不到stdfax.h
#include <stdafx.h>
#include <iostream>
#include <String>
using namespace std;
int main()
{
int errors = 0;
string str( "a very long literal string" );
for ( int ix = 0; ix < 1000000; ++ix )
{
int len = str.size();
string str2 = str;
if ( str != str2 )
++errors;
}
cout << "string class: "
<< errors << " errors occurred.\n";
return 0;

}
直接用文件--新建--C++ Source File,是不行的,有这样的错:D:\C++练习\Cpp1.cpp(1) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
作者: 冰feng£落叶    时间: 2009-11-4 00:14
stdafx.h本身就不是标准库头文件。

他只是用来包含一些定义和#include一些头文件,使得预先编译这些东西,不需要每次编译都重复。

它也只是一个普通的文件,只是系统为了预编译头,帮你加上的。

你既然没有让它帮你加,你就要自己加stdafx.h和stdafx.cpp
作者: tp寶寶^ō^    时间: 2009-11-4 00:14
那么能不能把stdafx.h放在库文件里呢?
以后直接去调用它呢
作者: 誑謸鉍娚    时间: 2009-11-4 00:14
可以,但不好。
你建立不同的工程,系统为你创建的stdafx.h包含的头文件也不一样。

还是让系统帮你建吧~!

你也可以好往里面加#include




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2