#include <iostream>
#include <fstream>
#include <string>int main() {std::ifstream fin("example.txt"); // 创建 ifstream 对象并打开文件// 检查文件是否成功打开if (!fin) {std::cerr << "Error opening file!" << std::endl;return 1; // 返回错误代码}std::string line;// 逐行读取文件内容while (std::getline(fin, line)) {std::cout << line << std::endl; // 输出读取的每一行}fin.close(); // 关闭文件return 0; // 正常结束程序
}
文件输入输出流