c++ this指针的学习
Posted Heisenberg_Posion
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ this指针的学习相关的知识,希望对你有一定的参考价值。
this指针的用途:
- 为了在访问成员函数时不用每次都要多传递一个对象指针参数
- 当形参和成员变量同名时,可用this指针来区分
- 在类的非静态成员函数中返回对象本身,可使用return *this
this指针就是指向你当前访问的对象
#include<iostream>
#include<string.h>
using namespace std;
class Person
public:
Person(int age)
//1、当形参和成员变量同名时,可用this指针来区分
this->age = age;
Person& PersonAddPerson(Person p)
this->age += p.age;
//返回对象本身
return *this;
int age;
;
void test01()
Person p1(10);
cout << "p1.age = " << p1.age << endl;
Person p2(10);
p2.PersonAddPerson(p1).PersonAddPerson(p1).PersonAddPerson(p1); //链式编程
cout << "p2.age = " << p2.age << endl;
int main()
test01();
system("pause");
return 0;
空指针访问成员函数
C++中空指针也是可以调用成员函数的,但是也要注意有没有用到this指针
如果有用到this指针,需要加以判断保证代码的健壮性,这样能够保证程序不会崩溃
#include<iostream>
using namespace std;
class person
public:
void ShowperonsName()
cout << "this is a name !" << endl;
void ShowPersonAge()
if (this == NULL)
return;
cout << "his age is " << m_age << endl;
int m_age;
;
int main()
person* p = NULL;
p->ShowperonsName(); //单独运行这个代码是可以的
p->ShowPersonAge(); //这个代码就不行了,因为在访问成员属性时会自动加上this->m_age,当this为空时,再去访问一个成员属性,那肯定是访问不到的
以上是关于c++ this指针的学习的主要内容,如果未能解决你的问题,请参考以下文章