我正在为 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();
}
希望你能帮忙。