- this指针在c++中较为常用。this是一个指向当前对象实例的指针,通过this指针,可以访问该类的成员函数。
- 示例如下:
- this指针主要的使用场景是在类内部调用类外部的函数,该函数传递的参数是调用该函数的类对象,代码示例如下:
-
#include<iostream> class Entity; void PrintEntity(Entity* e); class Entity { public: int x, y; Entity(int x, int y) { //使用this指针,this表示当前Entity类对象的实例指针 this->x = x; PrintEntity(this); } }; void PrintEntity(Entity* e) { std::cout << e->x << std::endl; } int main() { Entity e1(5, 10); std::cout << e1.x << std::endl; std::cin.get(); return 0; }