我对析构函数有一些疑问。
class cls
{
char *ch;
public:
cls(const char* _ch)
{
cout<<"\nconstructor called";
ch = new char[strlen(_ch)];
strcpy(ch,_ch);
}
~cls()
{
//will this destructor automatically delete char array ch on heap?
//delete[] ch; including this is throwing heap corruption error
}
void operator delete(void* ptr)
{
cout<<"\noperator delete called";
free(ptr);
}
};
int main()
{
cls* cs = new cls("hello!");
delete(cs);
getchar();
}
此外,由于在删除时会自动调用析构函数,当所有逻辑都可以写在析构函数中时,为什么我们需要显式删除?
我对运算符删除和析构函数感到非常困惑,无法弄清楚它们的具体用法。详细的描述会很有帮助。
编辑: 我对答案的理解:对于这种特殊情况,默认析构函数会破坏 char 指针,因此我们需要先显式删除 char 数组,否则会导致内存泄漏。如果我错了,请纠正我。