只是想知道我试图删除这个有什么问题。因为我必须使用我教授宣布的变量
LN** map = nullptr;
对于我正在处理的赋值,使用更简单的数据类型不是一种选择。
class LN {
public:
LN() : next(nullptr) {}
LN (const LN& ln) : value(ln.value), next(ln.next) {}
LN (int v, LN* n = nullptr) : value(v), next(n) {}
int value;
LN* next;
};
int main()
{
LN** array = nullptr;
array = new LN*[5];
int j=1;
for (int i=0; i<5; ++i) {
array[i] = new LN();
array[i] = new LN(j++, array[i]);
array[i] = new LN(j++, array[i]);
}
// What I think should work, but doesn't.
for (int i=0; i<5; ++i) {
delete array[i];
}
delete[] array;
array = nullptr;
return 0;
}
答案 0 :(得分:1)
此处的删除尝试没有任何问题。它将成功删除当前存储在数组中的所有元素,后跟数组本身。
问题是LN
的析构函数没有正确清理列表中的所有值。当删除头next
值时,这会导致所有LN
指针泄漏。尝试在这里添加析构函数
~LN() {
delete next;
}