删除表达式是否调用析构函数?

发布于 2025-01-08 07:27:44 字数 208 浏览 0 评论 0原文

我动态地为一个对象分配内存,然后如果我调用删除会发生什么? 调用析构函数或删除函数有不同的处理内存的方式吗?

考虑以下示例:

class A 
{
 int x;
}

int main()
{
    A *ptr = new A();
    delete ptr;
    return 0;
}

析构函数在哪里调用?

I am allocating memory to a object dynamically and then if I call delete what happens?
the destructor is called or delete function has a different way of handling memory?

Consider the following example:

class A 
{
 int x;
}

int main()
{
    A *ptr = new A();
    delete ptr;
    return 0;
}

where is the destructor called?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无风消散 2025-01-15 07:27:44

带有删除运算符的表达式首先调用适当的析构函数(如果需要),然后调用函数运算符delete 来释放存储。
请查看此处了解详细信息。

An expression with the delete operator, first calls the appropriate destructor (if needed), and then calls function operator delete to release the storage.
Have a look here for details.

尝蛊 2025-01-15 07:27:44

delete 自动调用析构函数,然后释放内存。

delete automatically calls the destructor, and then frees the memory.

始终不够 2025-01-15 07:27:44

是的,delete 调用析构函数。

Yes, delete calls the destructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文