substr()不会采用参数化值

时间:2012-04-29 15:50:36

标签: c++ binary split substring

我有一个substr()命令的问题,我试图从示例内存管理模拟器中的一个地址分割出两个不同的地址。在下面的示例中:LoadParameters函数获取VirtualMemSize和PageFrameLength的一组值,这些值用于计算应从中分割位串的位置。

在示例中,LoadParameters()存储VirtualMemSize和PageFrameLength(分别为20和8)的值,这些值是全局值。问题是代码只有在我输入数字代替参数时才有效。我已经尝试将变量转换为类型size_t,但没有运气:

int main(void) {
    unsigned int VirtPageAddress;                                       
    unsigned int PhysPageAddress;                                       
    unsigned int OffsetAddress;                                         

    LoadParameters();                                           
    int VirtualAddress = 0xCAFEF00D;
    string pagestring;

    // Convert the hex address into a binary string and then
    // split it into page index and offset.

    string bitstring = bitset<sizeof(VirtualAddress) * 8>
                        (VirtualAddress).to_string();       

    cout << dec << VirtualMemSize << endl;
    cout << dec << PageFrameLength << endl;
    cout << bitstring << endl;

    // (Reports: 20, 8 and "11001010111111101111000000001101"

    // Extract relevant bits for the Page Index.

    pagestring = bitstring.substr((32-VirtualMemSize),PageFrameLength);

    // Convert the split string back into a number so that it
    // can be manipulated.

    VirtPageAddress = bitset<sizeof(pagestring)>
                        (pagestring).to_ulong();                          
    cout << "0x" << hex << VirtPageAddress << endl;
    return 0;
}

预期价值:“0xef”

输出值:“0x0”

1 个答案:

答案 0 :(得分:1)

使用g ++编译时,代码按预期工作(在添加一些包含和您遗漏的定义之后)。你使用什么编译器?

请记住,sizeof(pagestring)返回类的大小,而不是它包含的字符串;我怀疑这是你的意图,肯定会根据你的编译器/ STL实现而改变。你在模板实例化中的真正含义是什么?