使用文件中的getline时,while循环仅循环一次

时间:2019-03-05 23:09:23

标签: c++ while-loop getline

我有一些代码:

fileopen.open(file_name);
while (getline(fileopen, line, ',')){
    string temp;
    vector<string> mug;
    temp = line;
    stringstream ss(temp);
    while (getline(ss, temp, ' ')){
        mug.push_back(temp);
    }
    stringstream conv;
    double vol, cos;
    conv << mug.at(1);
    conv >> vol;
    stringstream().swap(conv);
    conv << mug.at(3);
    conv >> cos;
    mugs.push_back(make_tuple(mug.at(0), vol, mug.at(2), cos));
    stringstream().swap(conv);
    stringstream().swap(ss);
    temp.clear();
}
sort(mugs.begin(), mugs.end(), sort_by);
for (int i = 0; i < mugs.size(); i++){
    cout << "Country: " << get<0>(mugs[i]) << " ";
    cout << ", Volume: " << get<1>(mugs[i]) << " ";
    cout << ", Material: " << get<2>(mugs[i]) << " ";
    cout << ", Price: " << get<3>(mugs[i]) << "\n";
}

我有多个清除项和stringstream().swap(),因为这是一个众所周知的问题。 <sstream>似乎中断了while循环的迭代。但是,即使这似乎也不起作用。文件提供的输入如下:

RUS 0.1 Wood 20
USA 0.4 Glass 0.5

当前代码根据需要打印第一行,但是无法迭代并打印第二行。有什么建议吗?

我尝试使用continuegoto解决此问题。这些解决方案均未解决。

1 个答案:

答案 0 :(得分:2)

发布的输入文件在任何行中都没有,。因此,使用

while (getline(fileopen, line, ',')){

没有道理。使用

while (getline(fileopen, line)){