我有这么一点代码:
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
当前代码根据需要打印第一行,但无法迭代并打印第二行。有什么建议?
我曾尝试使用continue
和goto
来解决这个问题。这些解决方案都没有成功。
发布的输入文件在任何行中都没有,
。因此,使用
while (getline(fileopen, line, ',')){
没有意义。使用
while (getline(fileopen, line)){