Access this pointer - C++ Class

C++ examples for Class:this

Description

Access this pointer

Demo Code

#include <iostream>
using namespace std;
class where/*from  w w w. j  a  va 2 s. c o m*/
{
   private:
   char charray[10];   //occupies 10 bytes
   public:
   void reveal()
   { cout << "\nMy object's address is " << this; }
};
int main()
{
   where w1, w2, w3;      //make three objects
   w1.reveal();           //see where they are
   w2.reveal();
   w3.reveal();
   cout << endl;
   return 0;
}

Result


Related Tutorials