我正在为C ++做新的波士顿教程,并且刚刚完成了关于文件处理的教程。我的代码与他的代码看起来完全一样但是构建失败了。我想这可能是因为我在Mac上,我认为这可能是问题所在。 这是我的代码:
#include <iostream>
#inlcude <fstream>
using namespace std;
int main() {
ofstream buckyFile;
buckyFile.open("tuna.txt");
buckyFile << "I love tuna and tuna loves me!\n";
buckyFile.close();
}
希望你能提供帮助。
答案 0 :(得分:4)
正如语法高亮显示的那样,你有拼写错误include
:
#include <fstream>
答案 1 :(得分:2)
正确包含文件流并进行编译。这与MAC
无关#include <fstream>