所以我有这个非常基本的代码,但是,我一直有两个错误:
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;
}
我有一个类似的,更长的程序我正在使用并且正在发生一些事情。谢谢!