在C++中,使用ofstream
可以创建一个新的文件并打开它,以便向其中写入数据。下面是一个简单的示例代码,展示如何使用ofstream
创建一个名为example.txt
的文件并写入数据:
#include <iostream>
#include <fstream>
int main() {
// 创建一个名为example.txt的文件并打开它
std::ofstream outfile("example.txt");
// 检查文件是否成功打开
if(outfile.is_open()){
std::cout << "文件成功创建并打开" << std::endl;
// 向文件中写入数据
outfile << "Hello, world!" << std::endl;
// 关闭文件
outfile.close();
} else {
std::cout << "文件创建失败" << std::endl;
}
return 0;
}
在上面的代码中,首先包含了<fstream>
头文件,然后创建了一个名为outfile
的ofstream
对象,并传入文件名example.txt
作为参数。然后使用is_open()
函数检查文件是否成功打开,如果成功则向文件中写入数据,并最后关闭文件。
编译并运行上面的代码,就会在当前目录下创建一个名为example.txt
的文件,并向其中写入了Hello, world!
这行数据。