c++类中用this调用用法 15
classTest{inti,j;public:voidset(inta,intb){this->i=a;//将调用该函数的对象中的成员i赋值为athis->j=b;//...
class Test{
int i, j;
public:
void set(int a, int b)
{
this->i = a;//将调用该函数的对象中的成员i 赋值为a
this->j = b;//将调用该函数的对象中的成员j 赋值为b
}
};
int main()
{
Test t;
t.set(10, 20);//这时set函数中的this就是指向t的指针,相当于this=&t;
}
类中this->i = a;换成i=a;
this->j = b;换成j=b;
这两个完全等价吗?他们在什么时候会有区别? 展开
int i, j;
public:
void set(int a, int b)
{
this->i = a;//将调用该函数的对象中的成员i 赋值为a
this->j = b;//将调用该函数的对象中的成员j 赋值为b
}
};
int main()
{
Test t;
t.set(10, 20);//这时set函数中的this就是指向t的指针,相当于this=&t;
}
类中this->i = a;换成i=a;
this->j = b;换成j=b;
这两个完全等价吗?他们在什么时候会有区别? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询