C ++ - 无法将istringstream定义移出循环

时间:2013-06-12 08:05:52

标签: c++ string istringstream

我有以下代码:

#include <sstream>
#include <iostream>
using namespace std;

int main()
{
    string inp, s;
    istringstream iss;
    do
    {
        getline (cin, inp);
        iss(inp);
        int a = 0, b = 0; float c = 0;
        iss >> s >> a >> b >> c;
        cout << s << " " << a << " " << b << " " << c << endl;
    }
    while (s != "exit");
}

会产生以下错误:

error: no match for call to ‘(std::istringstream) (std::string&)’

我知道可以通过在循环中使用istringstream iss(inp);来避免此问题,但是,是否无法将此定义移出循环?

(当然, 可能将其移出,只是我无法完成任何事情。)

1 个答案:

答案 0 :(得分:3)

在对象声明之后,您无法调用对象构造函数。此外,std::istringstream::operator ()(std::string)不会(通常)在任何地方声明。

使用std::istringstream::str(…)在构建后分配其内容。