CPlusPlusThings/english/basic_content/this
2020-07-20 23:17:16 +08:00
..
img english 2020-07-19 10:38:38 +08:00
person english 2020-07-19 10:38:38 +08:00
person.cpp english 2020-07-19 10:38:38 +08:00
README.md Update README.md 2020-07-20 23:17:16 +08:00

Story about this

About Author

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

1This pointer to an object is not part of the object itself and does not affect the result of sizeof.

2This 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:

1When the class object itself is returned in a class's non static member function, directly use return *this。

2When the parameter is the same as the member variable name, 如this->n = n 不能写成n = n)。

The following examples are available:

#include<iostream>
#include<cstring>


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<<p.get_age()<<endl;
	cout<<p.add_age(10).get_age()<<endl;
    return 0;
}

In order to verify which this pointer is, now in 'Add'_ Add a breakpoint at "age". After running, it is as follows

thiscontrust

genthis

You'll find that the compiler adds it to us automatically A* constrather than A const *this

Closely.There is also a constant function aboveso we try to add a breakpoint atget_age as following

constthis

You'll find that the compiler takes the thisthen it changed toconst A* const. Because this is the const functionIt can only access const variables and const functions

You cannot modify the values of other variables. So you need a this to point to a variable that cannot be modifiedthat is const A*,and because this isconst pointer. ConclusionThis is constructed before the start of member function execution. Clear after member execution. Get above_ The age function is resolved to get_age(const A * const this),add_agefunction will be paresed as add_age(A* const this,int a). In C + +, there is only one difference between a class and a structure: the member of a class is private by default, while the structure is public. This is the pointer of the class. If it is replaced by a structure, this is the pointer of the structure.