Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C++ Programming » Programs » Templates » CPP program to illustrate template class
Suryateja Pericherla Categories: Templates. No Comments on CPP program to illustrate template class
5
(1)

In this article we will learnt to implement a CPP program to illustrate template class. A C++ program is provided below to illustrate class template.

 

Program is as follows:

#include <iostream>
using namespace std;
template<class T>
class Swapper
{
	private:
		T x;
		T y;
	public:
		Swapper(T x, T y)
		{
			this->x = x;
			this->y = y;
		}
		void swap()
		{
			T temp = x;
			x = y;
			y = temp;
		}
		void display()
		{
			cout<<"After swap x = "<<x<<", y = "<<y<<endl;
		}
};
int main()
{
	Swapper<int> s1(2, 4);
	s1.swap();
	s1.display();
	Swapper<double> s2(4.2, 6.9);
	s2.swap();
	s2.display();
	return 0;
}

 

Output for the above program is as follows:

After swap x = 4, y = 2
After swap x = 6.9, y = 4.2

 

How useful was this post?

Click on a star to rate it!


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory