关于 istringstream 和 >>operator
about istringstream and >>operator
string str = "0.000 0.005 0.001";
istringstream s(str);
string sub;
while (s)
{
s >> sub;
cout << sub << endl;
}
那是我的代码,我只想输出str
中的每个数字,但我得到了最后一个数字两次。我知道有很多更好的方法来实现它,但我想知道这有什么问题 code.Do 我在 operator>>
上出错了?
使用
while (s >> sub)
{
cout << sub << endl;
}
相反。在您的代码中,您最终 "eating" 流的结尾,因此 s >> sub
失败,并且 sub
与最后一次正确阅读(即最后一个数字)保持不变,因此您最终显示它两次.
相关:Why is iostream::eof inside a loop condition considered wrong?
string str = "0.000 0.005 0.001";
istringstream s(str);
string sub;
while (s)
{
s >> sub;
cout << sub << endl;
}
那是我的代码,我只想输出str
中的每个数字,但我得到了最后一个数字两次。我知道有很多更好的方法来实现它,但我想知道这有什么问题 code.Do 我在 operator>>
上出错了?
使用
while (s >> sub)
{
cout << sub << endl;
}
相反。在您的代码中,您最终 "eating" 流的结尾,因此 s >> sub
失败,并且 sub
与最后一次正确阅读(即最后一个数字)保持不变,因此您最终显示它两次.
相关:Why is iostream::eof inside a loop condition considered wrong?