6

我正在尝试使用以下代码逐行读取文件到字符串类型变量:

#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]

如何逐行进入字符串类?

4

1 回答 1

11

使用std::getline

std::string s;
while (std::getline(file, s))
{
    // ...
}
于 2010-04-05T23:28:56.377 回答