对象销毁_C++核心准则??ES.61:用delete「」销毁数组,用delete消毁对象

7ce8b85b63e819f6ac52ad3d665f7b2b.png

ES.61: Delete arrays using delete[] and non-arrays using delete

ES.61:使用delete[]销毁数组,使用delete销毁对象

Reason(原因)

That's what the language requires and mistakes can lead to resource release errors and/or memory corruption.

这是C++语言的要求,如果用错会导致资源释放错误或者内存破坏。

Example, bad(反面示例)

void f(int n){    auto p = new X[n];   // n default constructed Xs    // ...    delete p;   // error: just delete the object p, rather than delete the array p[]}

Note(注意)

This example not only violates the no naked new rule as in the previous example, it has many more problems.

示例代码不仅违反了前面示例中的禁止暴露的new规则,还有更多其他错误。

Enforcement(实施建议)

  • If the new and the delete are in the same scope, mistakes can be flagged.
  • 如果new和delete同属一个作用域,错误可以被标记。
  • If the new and the delete are in a constructor/destructor pair, mistakes can be flagged.
  • 如果new和delete分别位于构造函数和析构函数,错误可以被标记。

原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es61-delete-arrays-using-delete-and-non-arrays-using-delete


觉得本文有帮助?请分享给更多人。

关注微信公众号【面向对象思考】轻松学习每一天!

面向对象开发,面向对象思考!

826aa57a2daae79fa0333b084c5e4787.png
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值