我有一个包含多个课程的很长的程序,所以除非您需要,否则我不会发布它。但是在主要回报之后,我得到了一个分段错误。
使用 GDB 我可以看到这个错误:
program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x0000002300103be8
0x00000001000035cc in std::_Rb_tree<std::string, std::string, std::_Identity, std::less, std::allocator >::_S_right (__x=0x2300103bd0) at stl_tree.h:512
512 { return static_cast<_Link_type>(__x->_M_right); }
我对 C++ 很陌生,所以这对我来说就像是胡言乱语。任何人都可以破译它吗?看起来我的一个 STL 容器可能会导致问题?关于如何解决它的任何建议?
编辑代码:
好的,所以我已将其隔离到 if 块中的某个地方main
,这是我写的最后一件事,当我将其注释掉时,程序运行良好。
else if(line.substr(0, 3) == "Rec") // Recieve
{
istringstream ss(line);
string s; // output string
string upc;
string name;
int amount;
int count = 0;
while(ss >> s) // go through the words in the line
{
count++;
if(count == 2)
upc = s;
else if (count == 3)
{
istringstream isa(line.substr(20, 2));
isa >> amount; //Parse the amount
}
else if (count == 4)
name = s;
}
warehouses.find(name)->second.receive_food(upc, amount); //add the food to the warehouse
}
为了澄清line
我们正在查看的是这种格式:
Receive: 0984523912 7 Tacoma
warehouses
是一张地图:map<string, a4::warehouse> warehouses; //all the warehouses.
这里是仓库收货方式
void warehouse::receive_food(std::string upc, int amount)
{
items.find(upc)->second.receive(amount);
todays_transactions = todays_transactions + amount;
}
items
在哪里std::map<std::string, food> items;
最后是食物接收方法
void food::receive(int amount)
{
crates.push_back(crate(life, amount));
}
crates
在哪里std::list<crate> crates;
而一个crate
是
class crate
{
public:
crate(int, int);
~crate();
int life;
int quantity;
};