ofstream outfile;
时间: 2024-09-11 12:03:51 浏览: 32
ofstream和ifstream用法
5星 · 资源好评率100%
ofstream是C++标准库中的一个流对象,它代表"output stream file"(输出文件流)。当你创建一个ofstream类型的变量,如`ofstream outfile;`,你正在声明一个名为outfile的文件输出流对象,用于向文件写入数据。这个对象可以用来打开一个文件(如果还没有文件,会尝试创建),然后你可以使用它的成员函数(如`write()`、`getline()`等)来进行读写操作。
例如:
```cpp
#include <fstream>
using namespace std;
int main() {
ofstream outfile("example.txt"); // 尝试打开名为example.txt的文件
if (outfile.is_open()) { // 检查是否成功打开
outfile << "This is an example of output to a file.\n"; // 写入文本
outfile.close(); // 关闭文件流
} else {
cout << "Unable to open the file.\n";
}
return 0;
}
```
阅读全文