c++——this指针

 

 类的this指针就是值类的对象自己

 

实验1:若类成员函数的形参 和 类的属性,名字相同,通过this指针来解决。

 

 1 #include <iostream>
 2 using namespace std;
 3 class Test
 4 {
 5 public:
 6     Test(int a, int b) //---> Test(Test *this, int a, int b)
 7     {
 8         this->a = a;
 9         this-> b = b;    
10     }
11     void printT()
12     {
13         cout<<"a: " <<a <<endl;
14         cout<< "b: " << this->b <<endl;
15     }
16 protected:
17 private:
18     int a;
19     int b;
20 };
21 
22 void main()
23 {
24     
25     Test t1(1, 2);
26     t1.printT();// ===> printT(&t1)
27     cout<<"hello..."<<endl;
28     system("pause");
29     return ;
30 }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值