# Story about this ## About Author ![](../img/wechat.jpg) ## 1.This pointer I believe that many people sitting here are learning python. For Python, there is self. Analogy to C + + is this pointer. Let's analyze the use of this pointer in class. Let's first talk about the use of this pointer: (1)This pointer to an object is not part of the object itself and does not affect the result of sizeof. (2)This scope is within the class. When accessing the non static members of the class in the non static member function of the class, the compiler will automatically pass the address of the object itself to the function as an implicit parameter. That is to say, even if you don't write this pointer, the compiler will add this when compiling. As the implicit formal parameter of non static member function, the access to each member is carried out through this. Second, the use of this pointer: (1)When the class object itself is returned in a class's non static member function, directly use return *this。 (2)When the parameter is the same as the member variable name, 如this->n = n (不能写成n = n)。 The following examples are available: ```c++ #include #include using namespace std; class Person{ public: typedef enum { BOY = 0, GIRL }SexType; Person(char *n, int a,SexType s){ name=new char[strlen(n)+1]; strcpy(name,n); age=a; sex=s; } int get_age() const{ return this->age; } Person& add_age(int a){ age+=a; return *this; } ~Person(){ delete [] name; } private: char * name; int age; SexType sex; }; int main(){ Person p("zhangsan",20,Person::BOY); cout<