c++全部读text文件数据
时间: 2023-12-15 22:04:41 浏览: 74
C++从文本文件读取数据到vector中的方法
5星 · 资源好评率100%
你可以使用 C++ 的文件输入流来读取 text 文件中的数据。以下是一个简单的例子:
```c++
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
string filename = "example.txt";
ifstream infile(filename);
if (!infile.is_open())
{
cout << "Failed to open file " << filename << endl;
return 1;
}
string line;
while (getline(infile, line))
{
cout << line << endl;
}
infile.close();
return 0;
}
```
在这个例子中,我们使用 `ifstream` 来打开文件 `example.txt`,然后使用 `getline` 函数逐行读取文件中的数据并输出到控制台。最后,我们关闭输入流 `infile`。
阅读全文