初始化我的双端队列或向量时,我遇到了一个奇怪的错误。我正在使用QtCreator和CMake-Project。
如果我使用双端队列,它会在初始化时中止:
std::deque<int> myValues; // <-- abort here
for (int i=0;i<10;++i)
{
myValues.push_back(i);
}
当我使用deque时,它会在push_back上中止:
std::vector<int> myValues;
for (int i=0;i<10;++i)
{
myValues.push_back(i); // <-- abort here
}
我无法找出为什么现在发生这种情况(它一直都是这样)。两个中止都发生在_gnu_cxx :: new_allocator&lt; int&gt; :: allocate。
任何提示?
感谢您提前付出的努力!
哈特穆特
答案 0 :(得分:1)
它看起来像程序中其他位置的堆损坏。也就是说,您在某处写出越界或删除无效指针。一旦堆内部结构损坏,大量分配可能会导致程序崩溃。