为什么这些头只能在预编译头之外工作?

时间:2017-12-22 01:27:07

标签: c++ visual-c++

在stdafx.h中:

#include <fstream>
#include <sstream>

在example.cpp中:

#include <stdafx.h>
std::ifstream in_stream;
std::stringstream st_stream;

如果我没有将fstream和sstream包含在.cpp文件中,我会收到大量错误,例如:

Error   C2079   'in_stream' uses undefined class 
'std::basic_ifstream<char,std::char_traits<char>>'

Error   C2228   left of '.exceptions' must have class/struct/union  

如果我将相应的包含直接放在.cpp文件中,为什么错误会消失?功能不应该相同吗?

1 个答案:

答案 0 :(得分:1)

这应该写成"stdafx.h"而不是<stdafx.h>,因为"stdafx.h"不是标准的头文件(这只是C ++道德规范,而不是规则)。

Visual Studio会自动创建此文件并向其中添加一堆头文件。

如果您有一个包含许多源文件的大型项目,并且许多源文件中使用了<fstream>,请在<fstream>中添加"stdafx.h"。否则请避免编辑此文件。

std::ifstream需要<fstream>个头文件。相关帮助页面中提到了所需的头文件。请参阅示例std::ifstream help

直接在"myfile.cpp"文件中添加相关的标题文件:

//myfile.cpp:
#include "stdafx.h"
#include <iostream>
#include <string>
#include <fstream>
#include <sstream>
int main(){...}

如果您有一个小项目,您可以通过“项目设置”告诉Visual Studio停止使用预编译的标题 - &gt; “C / C ++” - &gt; “预编译标题”。这样您就可以删除"stdafx.h",并且您的源文件将与不同的编译器更兼容。