gpt4 book ai didi

c++ - 在类内初始化 unordered_map 时出错

转载 作者:行者123 更新时间:2023-11-28 06:01:28 27 4
gpt4 key购买 nike

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

我已经使用 Visual Studio 的调试器检查了我的代码,错误似乎是由于尝试在类对象的无序映射上调用 .size() 而导致的。具体来说,在“列表”的实现中:

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

当使用调试器单步执行并关注局部变量时,我看到:this 0xccccccccccccce0c folders={ size=??? (文件夹是类变量的映射)下面是 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
}

addFolder 的定义:

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 找到完整的代码。大多数代码我已经针对错误进行了测试,这就是为什么我只发布这么小的一部分。

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

--另外:请注意,这只是一个模拟,我实际上并不打算创建任何形式的计算机病毒。

这是发生错误的代码部分(在 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对于空指针。

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

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

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

更多代码会有所帮助。

关于c++ - 在类内初始化 unordered_map 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33205785/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com