Car sorting problem in vectors topic 4th lecture

please tell what is syntax mean in below write

car( int price,int x,int y){

this->x=x;
this->y=y;

}

the given constructor assigns the value passed to it to the data members of class car.
this is used reference data members of current class( it is required to let compiler know which x is assigned the value since normal x refers to constructor parameter and this->x refers to data member)

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.