diff --git a/README.md b/README.md index 5ac9033..cda2cba 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,7 @@ 目前更新: - [x] [const那些事](./const) - [x] [static那些事](./static) - - +- [x] [this那些事](./this) ## 关于作者: diff --git a/this/README.md b/this/README.md new file mode 100644 index 0000000..9c7c68b --- /dev/null +++ b/this/README.md @@ -0,0 +1,140 @@ +# this指针与类中的枚举类型 + +## 关于作者 + +微信公众号: + +![](../img/wechat.jpg) + +## 1.this指针 + +相信在坐的很多人,都在学Python,对于Python来说有self,类比到C++中就是this指针,那么下面一起来深入分析this指针在类中的使用! + +首先来谈谈this指针的用处: + +(1)一个对象的this指针并不是对象本身的一部分,不会影响sizeof(对象)的结果。 + +(2)this作用域是在类内部,当在类的非静态成员函数中访问类的非静态成员的时候,编译器会自动将对象本身的地址作为一个隐含参数传递给函数。也就是说,即使你没有写上this指针,编译器在编译的时候也是加上this的,它作为非静态成员函数的隐含形参,对各成员的访问均通过this进行。 + +其次,this指针的使用: + +(1)在类的非静态成员函数中返回类对象本身的时候,直接使用 return *this。 + +(2)当参数与成员变量名相同时,如this->n = n (不能写成n = n)。 + +另外,在网上大家会看到this会被编译器解析成`A *const `,`A const * `,究竟是哪一个呢?下面通过断点调试分析: + +现有如下例子: + +```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< +#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<