在 class 中初始化 unordered_map 时出错

Errors with initialization of an unordered_map inside of a class

我得到的错误是 Exception thrown at 0x00007FF77339C476 in VirusSimulator.exe: 0xC0000005: Access violation reading location 0xFFFFFFFFFFFFFFFF.

我已经使用 Visual Studio 的调试器检查了我的代码,似乎错误是由于尝试在 class 对象的无序映射上调用 .size() 造成的。 具体来说,在执行 "list":

size_type size() const _NOEXCEPT
    {   // return length of sequence
    return (this->_Mysize());
    }

在使用调试器单步执行并关注局部变量时,我看到:this 0xccccccccccccce0c folders={ size=??? } (文件夹是 class 变量的映射) 下面是 int main() 的一部分,我在其中手动初始化每台计算机驱动器的文件夹映射中的默认文件夹:

vector<Computer> macs;

    for (int i = 0; i < mac_amount; i++)
    {
        macs.push_back(Computer(OSX)); //Initialize a computer with an operating system
    }

    for (int i = 0; i < macs.size(); i++)
    {
        //... Here is some code initializing connections between the computer objects

        //and here is the manual insert of folders into the map
        macs[i].getDrive()->addFolder("default"); //This used to be in the computers constructor but I moved it out here for testing
    }

添加文件夹的定义:

void Harddrive::addFolder(string name)
{
Folder new_folder;
new_folder.set_name(name);
folders.insert(std::pair<string, Folder>(name, new_folder));
}

基本上,一个随机的计算机对象然后会运行一种病毒,该病毒会尝试通过访问具有的连接列表将自己安装到每个其他连接的计算机对象上,其中包含指向其他计算机对象的指针。 然后它取消引用这些并尝试在每台计算机的硬盘驱动器上找到默认文件夹,但随后失败,声称该文件夹未初始化?

如果需要我的任何其他代码,可以在 https://github.com/BananaSky/VirusSimulator/tree/UnstableNetworkAdditions 找到完整的代码 大多数代码我已经测试过错误,这就是为什么我只发布这么小的一部分。

非常感谢任何帮助!! (不过,这里已经很晚了,我可能很快就要睡觉了,所以如果我不能马上回复,我很抱歉)

--ALSO: Please note that this is just a simulation and that I'm not actually intending to create any form of computer virus.

这是发生错误的代码部分(在 Virus.cpp 内):

vector<int> vulnerableConnectionIPs = installedOn->getNetworkAdapter()->getConnection()->getConnections();

    for (int i = 0; i < vulnerableConnectionIPs.size(); i++)
    {
        Computer* accessRequest = installedOn->getNetworkAdapter()->getConnection()->getConnect(vulnerableConnectionIPs[i])->giveAccess();
        if (accessRequest != NULL && accessRequest != installedOn)
        {
            if (accessRequest->getDrive()->getFolders()) //Error occurs here
            {
                accessRequest->Install(this, "default"); //Infect if infectable :)
            }
            else
            {
                cout << "No folders exist on " << accessRequest->getDrive()->getModel() << endl;
            }
        }
    }

我正在小规模复制这个,我可能会在明天之前发布

0xcccccccccccccccc(64 位)或 0xcccccccc(32 位)的内存地址是 Visual Studio 表示 uninitialized block of memory 的方式。还有 0xfeeefeee 表示已经释放,0x00000000 表示空指针。

检查您是否确实在尝试访问的变量中存储了一个值。

错误对话框中实际显示的值可能会偏移到 关闭 到上述位置的值,您只需跟踪整个程序即可。

您对错误的初步描述还指出至少要尝试取消对空指针的引用。

更多代码会有所帮助。