作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试使用 istringstream
从输入中提取有效数字时,我从 istringstream
得到以下错误行为:
例如:
void extract(void)
{
double x;
string line, temp;
getline(cin, line);
istringstream is(line);
while(is >>temp)
{
if(istringstream(temp) >>x)
{std::cout<<"number read: "<<x<<endl;}
}
输入:1 2 3rd 4th
输出:
number read: 1
number read: 2
number read: 3
number read: 4
不当行为是 istringstream 将字符串 3rd
转换为数字 3。
为什么 istringstream
这样做以及如何避免这种情况?
最佳答案
这是因为您从流中读取了
数字。
>>>
运算符从流中提取 "3rd"
,并尝试将其转换为 double
,但由于只有第一个字符串的字符是数字,它只能解析"3"
,并简单地丢弃非数字字符。
如果您想要
"3rd"
,那么您需要将其作为字符串读取。
关于c++ - istringstream 转换的不当行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27421575/
我正在编写一个 native iOS 7 应用程序,需要从 JSON api(由我控制)检索数据。 JSON 输出示例如下: { "id" : "544", "name" : "1900 Green
我是一名优秀的程序员,十分优秀!