我的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”

最佳答案

使用g++进行编译时,该代码可以按预期工作(在添加了一些包含和定义后,您便省去了)。您正在使用什么编译器?

请记住,sizeof(pagestring)返回类的大小,而不是其包含的字符串;我怀疑这是您的意图,并且肯定会根据您的编译器/ STL实现而改变。您在该模板实例化中到底意味着什么?

08-07 19:52