概述
1.this指针定义
在 C++ 中,每一个对象都能通过 this 指针来访问自己的地址。this 指针是所有成员函数的隐含参数。因此,在成员函数内部,它可以用来指向调用对象。友元函数没有 this 指针,因为友元不是类的成员。只有成员函数才有 this 指针。
2.举例
比较两个成员的大小
1)普通函数
#include<iostream>
using namespace std;
class Box
{
private:
int Lenght{ 1 };
int width{ 1 };
int height{ 1 };
public:
explicit Box(int x, int y, int z):Lenght { x }, width { y }, height { z }{} //构造函数
int volume()
{
return Lenght * width * height;
}
};
bool compare(Box box11, Box box22)
{
return box11.volume()< box22.volume();
}
int main()
{
Box box1{ 5,5,5 };
Box box2{ 5,5,10 };
cout << box1.volume() << endl;//结果125
cout << compare(box1,box2) << endl; //结果1
return 0;
}
2)this指针
通过this 指针在类中访问当前对象的成员
#include<iostream>
using namespace std;
class Box
{
private:
int Lenght{ 1 };
int width{ 1 };
int height{ 1 };
public:
explicit Box(int x, int y, int z):Lenght { x }, width { y }, height { z }{} //三形参的构造函数
int volume()
{
return Lenght * width * height;
}
bool compare(Box box22)
{
return this -> volume() < box22.volume();
}
};
int main()
{
Box box1{ 5,5,5 };
Box box2{ 5,5,10 };
cout << box1.volume() << endl;//结果5
cout << box1.compare(box2) << endl; //结果1
//cout << box2.getheight(box1) << endl;
return 0;
}
最后
以上就是单身小熊猫为你收集整理的this指针1.this指针定义2.举例的全部内容,希望文章能够帮你解决this指针1.this指针定义2.举例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复