c++的类zz中的this指针是什么意思,有何用?

2024-12-01 09:38:22
推荐回答(1个)
回答(1):

this指对象本身。
例如:
class zz
{
private:
int year;
public:
int changeyear(int year)
{
this->year = year; //将形参year赋值给类成员变量year
}
}