Computer Science, asked by BibekAgarwal6615, 10 months ago

Difference between function overloading and function templates in c++

Answers

Answered by sarimkhan112005
1

Explanation:

In C++, two different functions can have the same name if their parameters are different; either because they have a different number of parameters, or because any of their parameters are of a different type. For example:  

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

// overloading functions

#include <iostream>

using namespace std;

int operate (int a, int b)

{

 return (a*b);

}

double operate (double a, double b)

{

 return (a/b);

}

int main ()

{

 int x=5,y=2;

 double n=5.0,m=2.0;

 cout << operate (x,y) << '\n';

 cout << operate (n,m) << '\n';

 return 0;

}

10

2.5

Edit & Run

In this example, there are two functions called operate, but one of them has two parameters of type int, while the other has them of type double. The compiler knows which one to call in each case by examining the types passed as arguments when the function is called. If it is called with two int arguments, it calls to the function that has two int parameters, and if it is called with two doubles, it calls the one with two doubles.

In this example, both functions have quite different behaviors, the int version multiplies its arguments, while the double version divides them. This is generally not a good idea. Two functions with the same name are generally expected to have -at least- a similar behavior, but this example demonstrates that is entirely possible for them not to. Two overloaded functions (i.e., two functions with the same name) have entirely different definitions; they are, for all purposes, different functions, that only happen to have the same name.

Note that a function cannot be overloaded only by its return type. At least one of its parameters must have a different type.

Function templates

Overloaded functions may have the same definition. For example:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

// overloaded functions

#include <iostream>

using namespace std;

int sum (int a, int b)

{

 return a+b;

}

double sum (double a, double b)

{

 return a+b;

}

int main ()

{

 cout << sum (10,20) << '\n';

 cout << sum (1.0,1.5) << '\n';

 return 0;

}

30

2.5

Edit & Run

Here, sum is overloaded with different parameter types, but with the exact same body.

The function sum could be overloaded for a lot of types, and it could make sense for all of them to have the same body. For cases such as this, C++ has the ability to define functions with generic types, known as function templates. Defining a function template follows the same syntax as a regular function, except that it is preceded by the template keyword and a series of template parameters enclosed in angle-brackets <>:

template <template-parameters> function-declaration  

The template parameters are a series of parameters separated by commas. These parameters can be generic template types by specifying either the class or typename keyword followed by an identifier. This identifier can then be used in the function declaration as if it was a regular type. For example, a generic sum function could be defined as:

1

2

3

4

5

template <class SomeType>

SomeType sum (SomeType a, SomeType b)

{

 return a+b;

}

It makes no difference whether the generic type is specified with keyword class or keyword typename in the template argument list (they are 100% synonyms in template declarations).

In the code above, declaring SomeType (a generic type within the template parameters enclosed in angle-brackets) allows SomeType to be used anywhere in the function definition, just as any other type; it can be used as the type for parameters, as return type, or to declare new variables of this type. In all cases, it represents a generic type that will be determined on the moment the template is instantiated.

Instantiating a template is applying the template to create a function using particular types or values for its template parameters. This is done by calling the function template, with the same syntax as calling a regular function, but specifying the template arguments enclosed in angle brackets:

Similar questions