Splitting a string into integers using istringstream in C++(在 C++ 中使用 istringstream 将字符串拆分为整数)
问题描述
我正在尝试使用 istringstream
将一个简单的字符串拆分为一系列整数:
I'm trying to use istringstream
to split a simple string into a series of integers:
#include <string>
#include <iostream>
#include <sstream>
#include <vector>
using namespace std;
int main(){
string s = "1 2 3";
istringstream iss(s);
while (iss)
{
int n;
iss >> n;
cout << "* " << n << endl;
}
}
我得到:
* 1
* 2
* 3
* 3
为什么最后一个元素总是出现两次?如何解决?
Why is the last element always coming out twice? How to fix it?
推荐答案
它出现了两次,因为你的循环是错误的,正如在 http://www.parashift.com/c++-faq-lite/input-output.html#faq-15.5 (在这种情况下,while (iss)
与 while (iss.eof())
没有什么不同.
It's coming out twice because your looping is wrong, as explained (indirectly) at http://www.parashift.com/c++-faq-lite/input-output.html#faq-15.5 (while (iss)
is not dissimilar from while (iss.eof())
in this scenario).
具体来说,在第三次循环迭代中,iss >>n
成功并获取您的 3
,并使流保持良好状态.由于这种良好的状态,循环然后第四次运行,直到下一次(第四次)iss>>n
随后失败,循环条件被破坏.但是在第四次迭代结束之前,您仍然输出 n
... 第四次.
Specifically, on the third loop iteration, iss >> n
succeeds and gets your 3
, and leaves the stream in a good state. The loop then runs a fourth time due to this good state, and it's not until the next (fourth) iss >> n
subsequently fails that the loop condition is broken. But before that fourth iteration ends, you still output n
... a fourth time.
试试:
#include <string>
#include <iostream>
#include <sstream>
#include <vector>
using namespace std;
int main()
{
string s = "1 2 3";
istringstream iss(s);
int n;
while (iss >> n) {
cout << "* " << n << endl;
}
}
这篇关于在 C++ 中使用 istringstream 将字符串拆分为整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中使用 istringstream 将字符串拆分为整数
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01