我试图破坏一系列全局结构 但是,它会在Visual Studio 2013中创建以下消息和崩溃 (g ++没有崩溃)。是什么导致了这个问题?
消息:" DEBUG ASSERTION FAILED" _BLOCK_TYPE_IS_VALID(pHead-> nBlockUse)
这是List结构:
template <typename T>
struct List {
struct ListNode {
ListNode() : item(0), next(0) {}
ListNode(T x) : item(x), next(0) {}
T item;
ListNode* next;
};
T operator[](int idx);
void insert(T x);
T get(int idx);
void print();
List() : head(0),tail(0),size(0) {}
ListNode* head;
ListNode* tail;
int size;
~List() {
ListNode* h = head;
while(h) {
ListNode* n = h->next;
delete h;
h = n;
}
head = NULL;
tail = NULL;
size = 0;
}
};
一览::插入件()
template <typename T>
void List<T>::insert(T x) {
if(head == NULL) {
head = new ListNode(x);
tail = head;
} else {
tail->next = new ListNode(x);
tail = tail->next;
}
size++;
}
globa数组的定义:
List<int> a[1001];
这是我的代码,用于破坏List结构的全局数组:
loop(i,0,N+1) {
delete &a[i];
}
答案 0 :(得分:0)
List<int> a[1001]
, new
将不会存储在堆中。
然后您尝试删除它,它会引发内存损坏错误,这是导致此错误的可能原因之一。
DEBUG ASSERTION FAILED&#34; _BLOCK_TYPE_IS_VALID(pHead-&GT; nBlockUse)
解决方案:使用new