C++ 写一个读取文件代码
时间: 2023-07-18 20:08:13 浏览: 189
c++读取文件
以下是一个简单的 C++ 代码示例,用于读取文本文件并将其打印到控制台上:
```c++
#include <iostream>
#include <fstream>
#include <string>
int main()
{
std::ifstream file("example.txt"); // 打开 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;
}
```
在此示例中,我们使用 `std::ifstream` 类打开一个名为 `example.txt` 的文件。如果文件成功打开,则逐行读取文件并将每行打印到控制台上。最后,我们使用 `file.close()` 方法关闭文件。如果文件无法打开,则代码将打印一条错误消息。
阅读全文