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