c++ 读取文件 按行
时间: 2023-07-18 10:43:19 浏览: 64
C语言实现按行读写文件
5星 · 资源好评率100%
可以使用`std::ifstream`来读取文件,并使用`std::getline()`按行读取内容,以下是示例代码:
```c++
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::ifstream file("example.txt");
std::string line;
while (std::getline(file, line)) {
std::cout << line << std::endl;
}
return 0;
}
```
其中`example.txt`是要读取的文件名,`getline()`函数会读取一行内容并存储到`line`变量中,如果读取到文件结尾则返回`false`,循环结束。
阅读全文