C++ifstream
时间: 2023-11-14 14:06:28 浏览: 74
C++中fstream,ifstream及ofstream用法浅析
C++ 中的 ifstream 是一个用于读取文件的输入流类,通常用于从文件中读取数据。
使用 ifstream 类需要包含头文件 <fstream>,并使用文件名作为构造函数参数来打开文件,例如:
```c++
#include <fstream>
using namespace std;
int main() {
ifstream myfile("example.txt");
// 读取文件内容...
myfile.close();
return 0;
}
```
在文件打开之后,可以使用 getline() 函数从文件中逐行读取数据,例如:
```c++
string line;
while (getline(myfile, line)) {
cout << line << endl;
}
```
阅读全文