c++读取txt文件
时间: 2023-07-02 10:15:48 浏览: 114
C++读写txt文本文件
4星 · 用户满意度95%
可以使用C++中的fstream库读取txt文件。
示例代码如下:
```c++
#include <iostream>
#include <fstream>
int main() {
std::ifstream file("example.txt");
if (file.is_open()) {
std::string line;
while (std::getline(file, line)) {
std::cout << line << std::endl;
}
file.close();
}
else {
std::cout << "Unable to open file" << std::endl;
}
return 0;
}
```
这里使用`std::ifstream`打开一个名为"example.txt"的文件,并逐行读取其内容。如果文件无法打开,则会输出错误信息。
注意,文件路径需要根据实际情况进行修改。如果txt文件与代码文件放在同一目录下,则只需要写文件名即可。
阅读全文