标签: c++ clion
当我在.h文件中使用代码#include <ofstream.h>时,我收到此错误:
#include <ofstream.h>
&#34; fstream.h&#34;找不到文件
我在os x中使用了Clion。
答案 0 :(得分:4)
在C ++中,您不应包含以.h结尾的文件(系统文件),而应包含#include <fstream>
.h
#include <fstream>
请参阅:http://en.cppreference.com/w/cpp/io/ofstream