-5

我正在为 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();

}

希望你能帮忙。

4

2 回答 2

4

正如语法突出显示的那样,您拼错了include

#include <fstream>
于 2013-04-14T16:09:06.820 回答
2

正确包含文件流并编译。与MAC无关

#include <fstream>
于 2013-04-14T16:09:52.483 回答