我正在尝试编写一个函数,要求用户将多个十六进制字符串输入到控制台,然后将这些字符串转换为位集。我希望函数使用指向位集的指针,以便将位集存储在父函数中。由于没有使用c ++ 11,我将64位bitset拆分为两个十六进制转换操作。
void consoleDataInput(bitset<1> verbose, bitset<32>* addr, bitset<64>* wdata, bitset<8>* wdata_mask, bitset<1>* rdnwr)
{
cout << "enter 1 for read 0 for write : ";
cin >> *rdnwr;
string tempStr;
unsigned long tempVal;
istringstream tempIss;
// Input the addr in hex and convert to a bitset
cout << "enter addr in hex : ";
cin >> tempStr;
tempIss.str(tempStr);
tempIss >> hex >> tempVal;
*addr = tempVal;
// enter wdata and wdata_mask in hex and convert to bitsets
if (rdnwr[0] == 1)
{
*wdata = 0;
*wdata_mask = 0;
}
else
{
// wdata
bitset<32> tempBitset;
cout << "enter wdata in hex : ";
cin >> tempStr;
if (tempStr.length() > 8)
{
tempIss.str(tempStr.substr(0,tempStr.length()-8));
tempIss >> hex >> tempVal;
tempBitset = tempVal;
for (int i=31; i>=0; i--)
{
wdata[i+32] = tempBitset[i];
}
tempIss.str(tempStr.substr(tempStr.length()-8,tempStr.length()));
tempIss >> hex >> tempVal;
tempBitset = tempVal;
for (int i=32; i>=0; i--)
{
wdata[i] = tempBitset[i];
}
}
else
{
tempIss.str(tempStr);
tempIss >> hex >> tempVal;
tempBitset = tempVal;
for (int i=32; i>=0; i--)
{
wdata[i] = tempBitset[i];
}
}
// wdata_mask
cout << "enter wdata_mask in hex : ";
cin >> tempStr;
tempIss.str(tempStr);
tempIss >> hex >> tempVal;
*wdata_mask = tempVal;
}
当我尝试在code :: blocks中使用GCC进行编译时,我收到错误
C:\Diolan\DLN\demo\ApolloSPI\main.cpp|202|error: no match for 'operator=' in '*(wdata + ((((sizetype)i) + 32u) * 8u)) = std::bitset<_Nb>::operator[](std::size_t) [with unsigned int _Nb = 32u; std::size_t = unsigned int](((std::size_t)i))'|
突出显示行
wdata[i+32] = tempBitset[i];
据我了解,我不需要在wdata[i+32]
之前使用*运算符,因为[i+32]
表示它是指针。
我不确定如何前进。 =
运算符是一个与bitset一起使用的有效运算符,所以我不理解错误。
感谢。
答案 0 :(得分:0)
你的wdata确实是一个指针,因此wdata [i + 32]实际上相当于*(wdata + i + 32),指向Bitset&lt; 64&gt;。您正在为此bitset分配tempBitset [i],除非我误认为是一位。
也就是说,您尝试将单个位的值分配给整个位集。
我怀疑你想要将一个bitset中的一个位设置为另一个位中的一个位,在这种情况下我认为你做想要'*':
(*wdata)[i+32] = tempBitset[i];
大致意思是,采用Bitset&lt; 64&gt;由wdata指出,并将其位[i + 32]设置为与tempBitset中bitset的bit [i]相同的值。