使用I / O时出错

时间:2015-11-25 03:03:41

标签: c++ io

所以我有这个非常基本的代码,但是,我一直有两个错误:

1. Method 'open' could not be resolved.
2. Method 'close' could not be resolved.

我是C ++的新手,但我已经看到过这个用过很多其他地方,但它不适合我。有人请告诉我究竟发生了什么?这是代码:

#include <iostream>
#include <fstream>
using namespace std;

int main() {

    ofstream myfile;
    myfile.open ("example.txt");
    myfile << "Writing this to a file.\n";
    myfile.close();
    return 0;

}

我有一个类似的,更长的程序我正在使用并且正在发生一些事情。谢谢!

0 个答案:

没有答案