0

这里正在发生一些非常奇怪的事情。我做了一个非常简单的测试代码来包含一个 if 流,我得到一个致命错误:编译时找不到'ifstream'文件。我怀疑这与编译器有关。

#include <ifstream>
using namespace std;
int main(){
    cout <<"hello world" <<endl;
}

以上是使用命令 clang++ *.cpp -o "test" 用 clang 编译的。

4

1 回答 1

5

错误的标题名称,没有ifstream标题。如果你想使用cout你可能意味着包括iostream

#include <iostream> 
于 2013-04-15T22:11:32.153 回答