C++ - repeatedly using istringstream(C++ - 反复使用 istringstream)
问题描述
我有一个代码用于读取在线存储的带有浮点数的文件:3.34|2.3409|1.0001|...|1.1|".我想使用 istringstream 来读取它们,但它不像我期望的那样工作:
I have a code for reading files with float numbers on line stored like this: "3.34|2.3409|1.0001|...|1.1|". I would like to read them using istringstream, but it doesn't work as I would expect:
string row;
string strNum;
istringstream separate; // textovy stream pro konverzi
while ( getline(file,row) ) {
separate.str(row); // = HERE is PROBLEM =
while( getline(separate, strNum, '|') ) { // using delimiter
flNum = strToFl(strNum); // my conversion
insertIntoMatrix(i,j,flNum); // some function
j++;
}
i++;
}
在标记点,仅第一次将行复制到单独的流中.在下一次迭代中,它不起作用并且什么也不做.我希望可以在每次迭代中不构建新的 istringstream 对象的情况下使用更多次.
In marked point, row is copied into separate stream only first time. In next iteration it doesn't work and it does nothing. I expected it is possible to be used more times without constructing new istringstream object in every iteration.
推荐答案
将行设置到 istringstream 后...
After setting the row into the istringstream...
separate.str(row);
...通过调用重置它
separate.clear();
这会清除在前一次迭代中或通过设置字符串设置的任何 iostate 标志.http://www.cplusplus.com/reference/iostream/ios/clear/一个>
This clears any iostate flags that are set in the previous iteration or by setting the string. http://www.cplusplus.com/reference/iostream/ios/clear/
这篇关于C++ - 反复使用 istringstream的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ - 反复使用 istringstream
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01