1

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

#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 的旧值!?

谢谢。

4

1 回答 1

3
tempIss.str(tempStr);

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

在第二次提取之前说tempIss.clear();应该可以完成这项工作。

于 2013-08-23T14:34:31.653 回答