我在头盔人员档案中的一门课内绘制了一个地图:
std::map<int, char> mCompletedIds;
我可以在这里与病媒打交道,因为我刚刚需要储存已经完成的ids。 但为了迅速找到,我正在使用地图。 因此,我总是把第2个奶粉论点说成是零。
现在, 在一组人中,我发现了这一点。
std:map<int, char>:iterator it = mCompletedIds.find(id);/id is defined above
On this statement, I am getting SIGBUS. Is it because map is empty at the moment? Can anyone pls. help me understand the reason.
Thanks, sg