Vector和deque初始化或push_back导致SIGABRT错误

时间:2012-07-03 10:22:26

标签: c++ vector sigabrt deque

初始化我的双端队列或向量时,我遇到了一个奇怪的错误。我正在使用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。

任何提示?

感谢您提前付出的努力!

哈特穆特

1 个答案:

答案 0 :(得分:1)

它看起来像程序中其他位置的堆损坏。也就是说,您在某处写出越界或删除无效指针。一旦堆内部结构损坏,大量分配可能会导致程序崩溃。