在 C++ 中,可以使用 ofstream 类编写文件,通过 open() 方法打开文件,使用
如何使用 C++ 写入文件?
简介
在 C++ 中,可以使用 ofstream
类来编写文件。ofstream
对象代表一个输出流,可以写入文件。
语法
ofstream f; f.open("myfile.txt");
这将创建一个名为 myfile.txt
的文件并打开它以进行写入。
写入
要写入文件,请使用 f
对象的 运算符。
f << "Hello World" << endl;
这会将 "Hello World" 字符串写入文件,并追加一个换行符。
关闭文件
在写入完成后,必须关闭文件以释放系统资源。
f.close();
实战案例
下面是一个将 "Hello World" 写入文件的简单示例:
#include#include using namespace std; int main() { // 打开文件 ofstream f; f.open("myfile.txt"); // 写入文件 f << "Hello World" << endl; // 关闭文件 f.close(); return 0; }
以上是如何使用C++写入文件?的详细内容。更多信息请关注PHP中文网其他相关文章!