gpt4 book ai didi

c++ - 为什么这些 header 只能在预编译 header 之外工作?

转载 作者:行者123 更新时间:2023-11-28 04:52:12 24 4
gpt4 key购买 nike

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

最佳答案

这应该写成"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++”->“预编译 header ”告诉 Visual Studio 停止使用预编译 header 。这样你就可以删除 "stdafx.h"并且您的源文件将与不同的编译器更加兼容。

关于c++ - 为什么这些 header 只能在预编译 header 之外工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47934828/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com