std :: stringstream奇怪的行为

时间:2009-03-12 01:58:56

标签: c++ stl string libstdc++

一些背景信息,对于家庭作业,我必须使用二叉树编写一个波兰符号计算器,为此工作我必须解析命令行输入,以便它可以正确地构建二叉树,然后过去给它对输入的数学表达式的有效答案。

对于解析我使用了std :: stringstream,这样我就可以轻松地将std :: string转换为有效的float(或整数,double)。我遇到的问题是以下代码,它显示了错误以及我如何解决问题。我希望有人可以告诉我,如果我做错了什么,并且.clear()不正确,或者这是标准库中的错误处理这个特定输入的方式(只发生在+上)和 - )。

#include <iostream>
#include <sstream>
#include <string>

int main() {
    std::string mystring("+");
    int num;
    char op;

    std::stringstream iss(mystring);
    iss >> num;

    // Seems it is not a number 
    if (iss.fail()) {
            // This part does not work as you would expect it to

            // We clear the error state of the stringstream
            iss.clear();
            std::cout << "iss fail bit: " << iss.fail() << std::endl;
            iss.get(op);
            std::cout << "op is: " << op << " iss is: " << iss.str() << std::endl;
            std::cout << "iss fail bit: " << iss.fail() << std::endl;

            // This however works as you would expect it to
            std::stringstream oss(iss.str());
            std::cout << "oss fail bit: " << oss.fail() << std::endl;
            oss.get(op);
            std::cout << "op is: " << op << " oss is: " << oss.str() << std::endl;
            std::cout << "oss fail bit: " << oss.fail() << std::endl;

    } else {
            // We got a number
    }   
}

程序的示例输出:

iss fail bit: 0
op is:  iss is: +
iss fail bit: 1
oss fail bit: 0
op is: + oss is: +
oss fail bit: 0

也许你们会看到我错过的东西,或者这确实是一个超出我的程序的错误,在这种情况下,指向何处报告此内容将非常感激。

1 个答案:

答案 0 :(得分:4)

当你说:

  iss.clear();
  std::cout << "iss fail bit: " << iss.fail() << std::endl;
  iss.get(op);

你正在尝试阅读已经阅读的内容。您需要重置流读取指针:

  iss.clear();
  iss.seekg(0);    // start again
  std::cout << "iss fail bit: " << iss.fail() << std::endl;
  iss.get(op);