阅读量:0
在C++中,可以使用ifstream
类来读取txt文件内容。下面是一个简单的示例代码:
#include #include #include int main() { std::ifstream file("example.txt"); // 打开文件 if (!file.is_open()) { std::cout << "无法打开文件" << std::endl; return 1; } std::string line; while (std::getline(file, line)) { // 逐行读取文件内容 std::cout << line << std::endl; // 输出到控制台 } file.close(); // 关闭文件 return 0; }
在上面的示例中,我们首先创建一个ifstream
对象并打开要读取的txt文件,然后使用std::getline()
函数逐行读取文件内容,最后输出到控制台。最后,记得关闭文件流以释放资源。