C++ Function templates are those functions which can handle different data types without separate code for each of them. For a similar operation on several kinds of data types, a programmer need not write different versions by overloading a function. It is enough if he writes a C++ template based function. This will take care of all the data types.
There are two types of templates in C++, viz., function templates and class templates. This article deals with only the function templates.
There are lot of occasions, where we might need to write the same functions for different data types. A favorite example can be addition of two variables. The variable can be integer, float or double. The requirement will be to return the corresponding return type based on the input type. If we start writing one function for each of the data type, then we will end up with 4 to 5 different functions, which can be a night mare for maintenance.
C++ templates come to our rescue in such situations. When we use C++ function templates, only one function signature needs to be created. The C++ compiler will automatically generate the required functions for handling the individual data types. This is how a programmer's life is made a lot easier.
C++ Template functions - Details:
Let us assume a small example for Add function. If the requirement is to use this Add function for both integer and float, then two functions are to be created for each of the data type (overloading).
int Add(int a,int b) { return a+b;} // function Without C++ template
float Add(float a, float b) { return a+b;} // function Without C++ template
If there are some more data types to be handled, more functions should be added.
But if we use a c++ function template, the whole process is reduced to a single c++ function template. The following will be the code fragment for Add function.
template
T Add(T a, T b) //C++ function template sample
{
return a+b;
}
This c++ function template definition will be enough. Now when the integer version of the function, the compiler generates an Add function compatible for integer data type and if float is called it generates float type and so on.
Here T is the typename. This is dynamically determined by the compiler according to the parameter passed. The keyword class means, the parameter can be of any type. It can even be a class.
C++ Template functions - Applicability:
C++ function templates can be used wherever the same functionality has to be performed with a number of data types. Though very useful, lots of care should be taken to test the C++ template functions during development. A well written c++ template will go a long way in saving time for programmers.
About The Author
Muthukumar
More articles can be found at http://www.codersource.net/.
professional maid services Deerfield ..Microsoft Business Solutions Great Plains has Project Accounting module where... Read More
Microsoft Business Solutions Great Plains fits to majority of horizontal... Read More
Document Manager and Version HistoryIn previous articles I have discussed... Read More
XML parser is a software module to read documents and... Read More
Anyone who has ever used Microsoft Word knows that it... Read More
Case study: A secretary using Corel WordPerfect 7 is often... Read More
Introduction: The creating of a computer program involves a number... Read More
For a long time now Microsoft's Internet Explorer has ruled... Read More
Looks like Microsoft Great Plains becomes more and more... Read More
The Software 2005 conference is now a wrap. This conference,... Read More
The major reason I recommend getting your hands on real... Read More
The world of small business accounting software can be a... Read More
Ad-Aware and Spybot are probably the two most well known... Read More
Formatting and reinstalling windows 98 is very easy if you... Read More
Microsoft CRM ? Client Relationship Management package from Microsoft Business... Read More
Microsoft Business Solutions products: Great Plains, MS CRM, Navision, Axapta,... Read More
Several software companies design programs for preventive maintenance. Most of... Read More
Customer Relationship Management or CRM is a combination of enterprise... Read More
If you are in a business that passes documents around... Read More
In this small article we will show you the possible... Read More
Microsoft Great Plains serves the wide spectrum of horizontal markets.... Read More
When Great Plains Software was designing and developing Great Plains... Read More
Microsoft bought Navision, Denmark based software development company, along with... Read More
Innovative Maintenance Systems (IMS) is one company that offers solutions... Read More
Learning how to program software seems like a daunting task... Read More
quick home cleaning Lake Forest ..Looks like Microsoft Great Plains becomes more and more popular,... Read More
Sales are all about leverage, because there is only so... Read More
Have you ever noticed that when you look at your... Read More
In a previous article, I wrote about OpenOffice... Read More
Microsoft Business Solutions Great Plains has Project Accounting module where... Read More
Microsoft Great Plains might be considered as ERP platform to... Read More
The first thing that you will notice about Linux Red... Read More
Words we choose to describe things and phenomena often show... Read More
In today's business world it's all but impossible to escape... Read More
Formatting and reinstalling windows 98 is very easy if you... Read More
Microsoft Business Solutions offers several ERP applications: Great Plains, Navision,... Read More
If you've been using MySQL database to store your important... Read More
For those who are unclear on the differences between the... Read More
When you first think about multicurrency ? you probably have... Read More
Today's business world is fast-paced. No matter what it is... Read More
There are plenty of articles out there about how to... Read More
According to a survey conducted by InfoTrends/CAP Ventures entitled "Content-Centric... Read More
Ad-Aware and Spybot are probably the two most well known... Read More
Sometimes your PC will start acting strange for no apparent... Read More
Should one use Windows Update?This topic has good and valid... Read More
If you have Microsoft Great Plains and support it for... Read More
Preventive Maintenance (PM) is defined as scheduled work done on... Read More
I suggest that you do not spend a lot of... Read More
Think of this, first we had the HAM Radio, then... Read More
Microsoft Business Solutions Great Plains was purchased from Great Plains... Read More
Software |