+1 vote
in C Plus Plus by

What is this pointer?

1 Answer

0 votes
by

The ‘this’ pointer is passed as a hidden argument to all nonstatic member function calls and is available as a local variable within the body of all nonstatic functions. ‘this’ pointer is a constant pointer that holds the memory address of the current object. ‘this’ pointer is not available in static member functions as static member functions can be called without any object (with class name).

Related questions

+2 votes
asked Jan 21, 2021 in C Plus Plus by SakshiSharma
+2 votes
asked Jan 20, 2021 in C Plus Plus by SakshiSharma
...