一、创建和打开文件
使用C++中的ofstream类来创建和打开文件,可以使用构造函数来实现,构造函数的参数指定了文件名和打开模式。文件名可以是相对路径或绝对路径。打开模式指定了文件是以什么方式打开的,有多种模式可选:
#include <fstream>
using namespace std;
int main () {
ofstream outfile;
outfile.open("example.txt"); // 默认以写入模式打开
outfile << "Hello World!" << endl;
outfile.close();
return 0;
}
以上代码创建了一个名为example.txt的文件,并且以写入模式打开。在文件中写入了一行字符串"Hello World!",之后关闭了文件。
二、写入数据
在打开文件后,可以使用ofstream类的<<运算符来写入数据。当使用<<运算符将数据写入到文件时,会自动转换为字符串类型。可以按照以下示例将不同类型的数据写入文件:
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream outfile;
outfile.open("example.txt");
outfile << "Writing multiple types of data to a file." << endl;
outfile << 123 << endl;
outfile << 3.14 << endl;
outfile << true << endl;
outfile.close();
return 0;
}
以上代码创建了一个名为example.txt的文件,并且以写入模式打开。在文件中写入了一行字符串,之后写入了整型数据123、浮点型数据3.14和布尔型数据true。之后关闭了文件。
三、关闭文件
当完成文件操作后,使用ofstream类的close()函数来关闭文件。这将释放与文件关联的系统资源并刷新缓冲区,确保写入数据已经存入文件内,而不是仅保留在内存中:
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream outfile ("example.txt");
if (outfile.is_open())
{
outfile << "This is a line." << endl;
outfile << "This is another line." << endl;
outfile.close();
}
else cout << "Unable to open file";
return 0;
}
以上代码创建了一个名为example.txt的文件,并且以写入模式打开。在文件中写入了两行字符串,之后关闭了文件。注意,可以使用is_open()函数检查是否成功打开文件。
四、其他函数
ofstream类还提供了一些其他的函数来完成其他的操作,如判断文件是否成功打开、获取当前写入位置、获取文件大小等。
例如,下面的代码演示了如何使用tellp()获取当前的写入位置。 tellp()返回当前指针的位置,指针指向要写入下一个字符的位置。 在这个例子中,我们使用seekp()函数将指针重新设置到文件的开头,并使用write()函数写入一些数据。
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream outfile ("example.bin", ios::out | ios::binary);
if (outfile.is_open())
{
char data[100] = "1234567890";
outfile.write(data, 10);
streampos pos = outfile.tellp();
outfile.seekp(pos - 5);
outfile.write("&",&1);
outfile.close();
}
else cout << "Unable to open file";
return 0;
}
以上代码创建了一个名为example.bin的二进制文件,并且以写入模式打开。在文件中写入了10个字符,然后使用tellp()函数获取当前的指针位置,并使用seekp()函数将指针重置到文件的开头,再使用write()函数写入一个单一字符。最后关闭了文件。
五、总结
以上便是关于C++中ofstream文件输出流的用法和功能的详细介绍。通过对于文件的创建、写入数据和关闭文件的操作,可以非常便利地对文件进行管理和操作。同时,ofstream类还提供了其他的许多函数和功能,可以灵活应用到不同的场景中。