1) This Simple program explain one of the use of this pointer in C++.
2) With the help of "this" pointer you can call as many as functions in a sequence.
3) This procedure is called function chaining
4) In this program i have used three different function and through main i have called all these function in a sequence with the help of this pointer
2) With the help of "this" pointer you can call as many as functions in a sequence.
3) This procedure is called function chaining
4) In this program i have used three different function and through main i have called all these function in a sequence with the help of this pointer
Code: Cpp
#include<iostream.h>
#include<conio.h>
class Test
{
public:
Test Display(); // Function 1
Test Show(); // Function 2
Test Result(); // Function 3
};
Test Test::Display()
{
cout<<"Function 1"<<endl;
return *this; // Return this pointer
}
Test Test::Show()
{
cout<<"Function 2"<<endl;
return *this;
}
Test Test::Result()
{
cout<<"Result 3"<<endl;
return *this;
}
void main()
{
Test Obj;
//Here i have called all the three function in a sequence.
Obj.Display().Show().Result(); //This is called Function Chaining
getch();
}


, otherwise you are doing a copy of the object
.