在C++中对文件进行操作,要包含头文件
#include <fstream> using namespace std;
创建对象(简单举例):
ofstream outfile; outfile.open("data.txt")
写入内容
outfile<<要写入的内容<<" ";
关闭文件,保存文件。
outfile.close()