ofstream
时间: 2023-07-26 11:11:18 浏览: 130
ofstream使用
ofstream是C++标准库中用于写文件的类。它是ofstream(输出文件流)类的一个实例,用于将数据写入文件。它可以打开一个文件,将数据写入该文件并在完成后关闭文件。使用ofstream的基本语法如下:
```
#include <fstream>
ofstream outfile;
outfile.open("filename");
outfile << "data";
outfile.close();
```
其中,`filename`是要写入的文件名,`data`是要写入的数据。使用`<<`操作符将数据写入文件。当完成写入后,需要使用`close()`方法关闭文件。
阅读全文