c++ this

this

成员函数的隐含参数
在C++的类中,每一个非静态函数中都有一个this指针,存在于成员函数中,作为函数的第一个形参,但是不会显示,指向当前调用函数
this指针的类型取决于使用this 的成员函数类型以及对象类型,this指针并不是成员的一部分,sizeof无用

#include<iostream>
using namespace std;
class A
{
public:
	A()
	{
		 m =1;
	}
	void Display()
	{
		cout << this << endl;
		cout << (*this).m << endl;
		cout << this->m << endl;
		cout << m << endl;
	}
private:
	int m;
};
int main()
{
	A a;
	A b;
	a.Display();
	b.Display();
}

在这里插入图片描述

如果类里面成员变量不设置private或者public或protect,
struct默认为public,class默认为private

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值