How to write a function template, C/C++ Programming

Assignment Help:

How to write a function template

A function template should be written at the beginning of the program in the global area, or you may place it into a header file. All function templates begin with a template declaration.

The syntax is :

  • The C++ keyword template
  • A left angle bracket ( < )
  • A comma separates a list of generic types, each one. A generic type having of two parts

1. the keyword class ( this usage of class has nothing to do with the key word class used to make user-defined type.)

2. a variable that shows some generic type, and will be used whenever this type requires to be written in the function definition. Typically the name T is used, but any valid C++ name will do.

  • A right angle bracket ( > ).

e.g.

template < class T>

T max(char x, char y)

                 {

                                return ( x > y) ? x : y ;

                 }

 

                void main()

                {

                  cout << max( 1,2) << endl;

                  cout << max( 5.62,3.48) << endl;

                  cout << max('A','a') << endl;

                  cout << max( 4,3) << endl;

                }

 

The output is :

                                                2

                                                5.62

                                                a

                                                6

 


Related Discussions:- How to write a function template

Define bitwise-and operator, Define Bitwise-AND Operator: &:? The bitwi...

Define Bitwise-AND Operator: &:? The bitwise-AND operator (&) compares every bit of its first operand to the corresponding bit of its second operand. If both bits are 1 the mat

Boardcoloring, how to fill the blank spaces in the board of 4*4 matrix with...

how to fill the blank spaces in the board of 4*4 matrix with the minimum of 4 colors and the condition is the adjacent element should not have the same colour

College, #question.College life is tough. Eating pizza for every meal is h...

#question.College life is tough. Eating pizza for every meal is hitting you hard. You are looking at working out to stay healthy. You found a web site that tells you how many ca

Socket Programming, Need someone to look over my assignment for correctness...

Need someone to look over my assignment for correctness and make any necessary changes.

What if one can''t wrap the local in an artificial block?, What if one can'...

What if one can''t wrap the local in an artificial block?

Prime no., program to find if a no . is prime or not

program to find if a no . is prime or not

Lcm, lcm program.

lcm program.

Explain protected derivation, Protected derivation In addition to doing...

Protected derivation In addition to doing private and public derivations, you may also do a protected derivation. In this situation :   The private members inherited

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd