有一个映射,它将一个映射int
到一个Test*
。
所有Test*
指针都在之前分配,然后分配给映射。然后,我正在输入 mapdelete
的值并将它们设置为null
.
之后,它检查 的有效性one
,它应该是null
。但是,one
不是null
。
#include <QString>
#include <QMap>
#include <QDebug>
class Test {
QString name;
public:
Test(const QString &name) : name(name) {}
QString getName() const { return name; }
};
int main() {
QMap<int, Test*> map;
Test *one = new Test("one");
Test *two = new Test("two");
Test *three = new Test("three");
map.insert(1, one);
map.insert(2, two);
map.insert(3, three);
for (auto itr = map.begin(); itr != map.end(); itr++) {
Test *x = *itr;
if (x) {
delete x;
x = 0; // ** Sets null to the pointer ** //
}
}
if (one) // ** Here one is not 0 ?! ** //
qDebug() << one->getName() << endl; // ** And then here crashes ** //
}
我想,当我在循环中使用它们时,我错过了一些东西delete
。
怎么能修好?
第二个问题是,分配delete
的指针是否正确?