我有一个很长的程序,有多个类,所以我不会发布它,除非你需要它。但是在主要回归之后我得到了一个分段错误。
使用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容器可能导致问题?关于如何解决它的任何建议?
使用代码进行编辑:
好吧所以我把它隔离到了main
的if块中的某个地方,这是我写的最后一件事,当我发表评论时程序运行正常。
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;
};
答案 0 :(得分:1)
看起来像内存损坏。 _Rb_tree
表示该错误与std::map
有关,warehouses.find(name)
通常以red-black tree的形式实现。没有看到代码就很难说更多。我建议使用Valgrind来调试问题。
在查看您在更新中发布的代码之后,我认为问题在于您不检查map::end()
是否返回有效的迭代器。如果找不到密钥,它可以返回 map<string, a4::warehouse>::iterator it = warehouses.find(name);
if (it != warehouses.end())
it->second.receive_food(upc, amount);
else ; // handle the case of a missing key
。
添加支票:
map::find
以及对{{1}}的其他来电的类似检查。