fstream 写文件
时间: 2023-11-09 08:19:56 浏览: 35
好的,您可以使用 `fstream` 类来写文件。下面是一个简单的示例代码:
```c++
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream myfile("example.txt"); // 打开文件 example.txt
if (myfile.is_open()) { // 判断文件是否成功打开
myfile << "This is a line.\n"; // 向文件写入内容
myfile << "This is another line.\n";
myfile.close(); // 关闭文件
cout << "Write to file success." << endl;
} else {
cout << "Unable to open file." << endl;
}
return 0;
}
```
在这个例子中,我们使用 `ofstream` 类来打开文件 example.txt 并向其中写入内容。使用 `myfile.is_open()` 来检查文件是否成功打开,如果打开成功,我们就可以使用 `myfile << "content"` 将内容写入文件中,最后使用 `myfile.close()` 关闭文件。如果文件打开失败,我们就无法向文件中写入内容。
希望这个例子能够帮助您了解如何使用 `fstream` 写文件。
阅读全文