这里正在发生一些非常奇怪的事情。我做了一个非常简单的测试代码来包含一个 if 流,我得到一个致命错误:编译时找不到'ifstream'文件。我怀疑这与编译器有关。
#include <ifstream>
using namespace std;
int main(){
cout <<"hello world" <<endl;
}
以上是使用命令 clang++ *.cpp -o "test" 用 clang 编译的。
这里正在发生一些非常奇怪的事情。我做了一个非常简单的测试代码来包含一个 if 流,我得到一个致命错误:编译时找不到'ifstream'文件。我怀疑这与编译器有关。
#include <ifstream>
using namespace std;
int main(){
cout <<"hello world" <<endl;
}
以上是使用命令 clang++ *.cpp -o "test" 用 clang 编译的。