fstream
时间: 2023-11-09 21:14:59 浏览: 63
fstream头文件
5星 · 资源好评率100%
fstream是C++中用于文件输入输出的类,它是由ifstream和ofstream组合而来的。我们可以使用fstream来打开文件,并对文件进行读写操作。其中,ifstream用于文件的读取,而ofstream用于文件的写入。使用fstream时,我们需要指定文件的路径,以及文件的打开方式(读、写、追加等)。例如:
```c++
#include <fstream>
using namespace std;
int main() {
ofstream outfile("example.txt"); // 打开文件,准备写入数据
outfile << "Hello, world!" << endl; // 写入数据
outfile.close(); // 关闭文件
ifstream infile("example.txt"); // 打开文件,准备读取数据
string str;
getline(infile, str); // 读取数据
infile.close(); // 关闭文件
cout << str << endl; // 输出读取的数据
return 0;
}
```
阅读全文