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 class template with multiple parameters
Suryateja Pericherla Categories: Templates. No Comments on CPP program to illustrate class template with multiple parameters
0
(0)

In this article we will learn to implement a CPP program to illustrate class template with multiple parameters. A C++ program is provided below to demonstrate a template class with multiple parameters.

 

Program is as follows:

#include <iostream>
using namespace std;
template<class T1, class T2>
class Adder
{
	private:
		T1 x;
		T2 y;
	public:
		Adder(T1 x, T2 y)
		{
			this->x = x;
			this->y = y;
		}
		void add()
		{
			cout<<"Sum is: "<<(x+y)<<endl;
		}
};
int main()
{
	Adder<int,int> a1(3, 5);
	a1.add();
	Adder<int,double> a2(2, 5.3);
	a2.add();
	return 0;
}

 

Output for the above program is as follows:

Sum is: 8
Sum is: 7.3

 

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