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

问题描述 投票:0回答:1

在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文件中,为什么错误会消失?功能不应该相同吗?

c++ visual-c++
1个回答
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(){...}

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

© www.soinside.com 2019 - 2024. All rights reserved.