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 member function template
Suryateja Pericherla Categories: Templates. No Comments on CPP program to illustrate member function template
5
(3)

In this article we will learn to implement a CPP program to illustrate member function template. A C++ program is provided below to illustrate member function template.

 

Program is as follows:

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

 

Output for the above program is as follows:

Sum is: 6
Sum is: 7.7

 

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