Use of this->data=data;

what is the use of the above function and specifically what is the use of ‘this’ fucntion?

hello @jayasmit98
In C++ programming, this is a keyword that refers to the current instance of the class. There can be 3 main usage of this keyword in C++.

for example

  • It can be used to pass current object as a parameter to another method.
  • It can be used to refer current class instance variable.
  • It can be used to declare indexers.