1. 程式人生 > >C++ this指標(3)

C++ this指標(3)

#include<iostream>

class Test
{
public:
    void func()
    {
        delete this;
    }
    static int a;
};

int Test::a = 11;

int main()
{
  Test *obj = new Test;
  obj->func();
  std::cout<<"a = "<<Test::a;
  return 0;
}