📜  在C++中“删除此”

📅  最后修改于: 2021-05-25 20:41:59             🧑  作者: Mango

理想情况下,不应将delete运算符用于指针。但是,如果使用,则必须考虑以下几点。

1) delete运算符仅适用于使用new运算符分配的对象(请参阅此文章)。如果对象是使用new创建的,那么我们可以删除this ,否则行为是不确定的。

class A
{
  public:
    void fun()
    {
        delete this;
    }
};
  
int main()
{
  /* Following is Valid */
  A *ptr = new A;
  ptr->fun();
  ptr = NULL; // make ptr NULL to make sure that things are not accessed using ptr. 
  
  
  /* And following is Invalid: Undefined Behavior */
  A a;
  a.fun();
  
  getchar();
  return 0;
}

2)删除完成后,删除后不应访问已删除对象的任何成员。

#include
using namespace std;
  
class A
{
  int x;
  public:
    A() { x = 0;}
    void fun() {
      delete this;
  
      /* Invalid: Undefined Behavior */
      cout<

最好的事情是根本不要删除它

感谢Shekhu提供了以上详细信息。

参考:
https://www.securecoding.cert.org/confluence/display/cplusplus/OOP05-CPP.+避免+删除+此
http://en.wikipedia.org/wiki/This_%28computer_science%29

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”