Ofstream不能在Dev C ++中使用。知道为什么不呢?

时间:2016-04-06 10:00:10

标签: c++

我正在使用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;
}

1 个答案:

答案 0 :(得分:2)

正如mindriot在他的评论中所说,这是一个编译错误,请改为使用:

file_.close ();