c++ 使用 ifstream读取txt
时间: 2023-08-17 14:06:09 浏览: 211
c++读取txt文件
你可以使用 `ifstream` 类来读取 txt 文件。以下是一个简单的示例代码:
```c++
#include <iostream>
#include <fstream>
#include <string>
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 << "无法打开文件" << std::endl;
}
return 0;
}
```
在示例代码中,我们首先通过 `ifstream` 类创建一个文件流对象 `file`,并指定要打开的文件名。然后,我们检查文件是否成功打开,如果成功,我们可以使用 `getline()` 函数逐行读取文件内容并输出。最后,我们关闭文件。
需要注意的是,如果文件打开失败,则需要处理相关错误。
阅读全文