我正在尝试使用以下代码逐行读取文件到字符串类型变量:
#include <iostream>
#include <fstream>
ifstream file(file_name);
if (!file) {
cout << "unable to open file";
exit(1);
}
string line;
while (!file.eof()) {
file.getline(line,256);
cout<<line;
}
file.close();
当我尝试使用 String 类时它不会编译,只有当我使用它时才会编译char file[256]
。
如何逐行进入字符串类?