istringstream不改变c ++

时间:2013-08-23 14:31:33

标签: c++ istringstream

我已经编写了一些代码来显示我在另一个程序中转换某些输入字符串时遇到的问题。

#include <iostream>
#include <sstream>
#include <bitset>

using namespace std;

int main()
{
    string        tempStr;
    unsigned long tempVal;
    istringstream tempIss;
    bitset<32>    tempBitset;

    // Input the first word in hex and convert to a bitset

    cout << "enter first word in hex : ";
    cin >> tempStr;
    tempIss.str(tempStr);
    cout << "word2 tempIss : " << tempIss.str() << endl;
    tempIss >> hex >> tempVal;
    cout << "word2 tempVal : " << (int)tempVal << endl;
    tempBitset = tempVal;
    cout << "word1 tempBitset: " << tempBitset.to_string() << endl;

    // Input the second word in hex and convert to a bitset

    cout << "enter second word in hex : ";
    cin >> tempStr;
    tempIss.str(tempStr);
    cout << "word2 tempIss : " << tempIss.str() << endl;
    tempIss >> hex >> tempVal;
    cout << "word2 tempVal : " << (int)tempVal << endl;
    tempBitset = tempVal;
    cout << "word2 tempBitset: " << tempBitset.to_string() << endl;

    return 0;
}

我的问题是虽然tempIss的值似乎随tempIss.str(tempStr);函数而变化,但以下tempIss >> hex >> tempVal;似乎使用了tempIss的旧值!?

感谢。

1 个答案:

答案 0 :(得分:3)

tempIss.str(tempStr);

这仅仅设置了内部缓冲区的内容。但是,它不会重置可以在先前操作的流上设置的错误标志。

在第二次提取之前说tempIss.clear();应该可以胜任。