C++中this指针的详解:

成员函数中this是指向正在调用该函数的对象,this指正在创建对象内部的成员。同一个类中的函数可以通过this相互调用,普通函数不能通过this调用构造函数,但构造函数可以通过this访问普通函数!

.h文件

ifndef TEACHER_H_
#define TEACHER_H_


class Teacher {
public:
int age;
int no;
Teacher();
~Teacher();
void teach1();
void teach2();
};


#endif /* TEACHER_H_ */

.cpp文件

#include "Teacher.h"
#include
using namespace std;


Teacher::Teacher() {


}


Teacher::~Teacher() {


}
//成员函数中this是:
//指向正在调用该函数的对象
void Teacher::teach1() {
cout<age< this->teach2();
}
void Teacher::teach2() {
cout<age<

}

.main文件

#include
using namespace std;
#include "Teacher.h"


void f1() {
Teacher t1;//age no   //创建的t1对象,this指向t1中的成员
t1.age = 100;
t1.teach1();//100


Teacher t2;     //创建的是t2对象,this指向t2中的成员
t2.age = 200;
t2.teach1();//200
}
void f2() {
Teacher t1;//age=100
t1.age = 100;
Teacher *p1 = &t1;    //p1指向的是t1对象,所以调用的是teach1()是t1中的!
p1->teach1();//100
}


void f3() {
Teacher t1;//age=100
t1.age = 100;
Teacher &r = t1; r指向的t1,调用的还是t1中的teacher1()
r.teach1();//100
}
int main() {
f3();
return 0;
}



你可能感兴趣的:(C++)