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 将字符串拆分为整数
基础教程推荐
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- CString 到 char* 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
