如何检查内存是否已被释放?

时间:2011-01-11 12:16:13

标签: c++

  

可能重复:
  How to check deallocation of memory

如果我有这种形状:

class X
{
int* first_;
int* current_;
int* last_;
X():last_(current_ = first_ = nullptr)
{/*e.b.*/}
~X()
{
delete first_;
}
};

如何检查first_分配和指向的内存是否已在X的析构函数中正确释放?

0 个答案:

没有答案