我正在使用C ++处理我的第一个文件处理。我编写了一个简单的程序,但问题是ofstream现在在Dev C ++中工作。有什么建议?
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main(){
ofstream file_;
file_.open("mytext.txt");
file_ << "This is my first text file ";
file.close();
std::cin.get();
return 0;
}
答案 0 :(得分:2)
正如mindriot在他的评论中所说,这是一个编译错误,请改为使用:
file_.close ();