c++fstream用法
时间: 2023-07-01 10:26:11 浏览: 142
C++_fstream的使用方法
C++中的 `fstream` 类提供了文件输入/输出的功能,它是 `ifstream` 和 `ofstream` 类的基类,同时具有它们的功能。以下是 `fstream` 的基本用法:
1. 打开文件:可以使用 `open()` 函数打开一个文件,需要提供文件名和打开模式。例如,要以写入模式打开一个名为 `example.txt` 的文件,可以使用以下代码:
```cpp
#include <fstream>
std::fstream file;
file.open("example.txt", std::ios::out);
```
在上述代码中,`std::ios::out` 表示以写入模式打开文件。
2. 写入文件:可以使用 `<<` 运算符向文件中写入数据,例如:
```cpp
file << "Hello World!" << std::endl;
```
在上述代码中,`std::endl` 表示换行符。
3. 读取文件:可以使用 `>>` 运算符从文件中读取数据,例如:
```cpp
std::string data;
file >> data;
```
在上述代码中,`data` 变量将存储从文件中读取的数据。
4. 关闭文件:在文件操作完成后,应该使用 `close()` 函数关闭文件,例如:
```cpp
file.close();
```
完整的文件读写示例代码如下:
```cpp
#include <iostream>
#include <fstream>
int main() {
std::fstream file;
file.open("example.txt", std::ios::out);
if (file.is_open()) {
file << "Hello World!" << std::endl;
file.close();
} else {
std::cout << "Error opening file!" << std::endl;
}
file.open("example.txt", std::ios::in);
if (file.is_open()) {
std::string data;
file >> data;
std::cout << "Data read from file: " << data << std::endl;
file.close();
} else {
std::cout << "Error opening file!" << std::endl;
}
return 0;
}
```
在上述代码中,我们首先打开一个名为 `example.txt` 的文件,并以写入模式向文件中写入数据。之后,我们关闭文件并打开同一个文件,并以读取模式从文件中读取数据。最后,我们将读取的数据输出到控制台并关闭文件。
阅读全文