처음공부하는데요

class Point{
int p;
public:
Point(int p=0){
this->p=p;
}

기본생성자에서 this->p=p 이게 무슨 뜻인지 해석좀요...