我编写了一些代码来显示我在另一个程序中转换某些输入字符串时遇到的问题。
#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 的旧值!?
谢谢。