fstream函数的用法
时间: 2023-10-16 15:10:35 浏览: 105
fstream的常用用法
5星 · 资源好评率100%
fstream是C++标准库中用于文件输入输出的类。它可以用于读取和写入文件,包括文本文件和二进制文件。使用fstream需要包含头文件<fstream>。常用的函数有open、close、read、write、seekg、seekp等。
其中,open函数用于打开文件,close函数用于关闭文件。read和write函数用于二进制文件的读写,seekg和seekp函数用于定位文件指针。
下面是一个简单的例子,演示了如何使用fstream读取一个文本文件:
```
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
string line;
ifstream myfile("example.txt");
if (myfile.is_open())
{
while (getline(myfile, line))
{
cout << line << '\n';
}
myfile.close();
}
else
{
cout << "Unable to open file";
}
return 0;
}
```
阅读全文