What is a template?
Answers were Sorted based on User's Feedback
Answer / yughandhar
templates r used to create generic classes and functions.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ravinandan
Template is used for generic programming. In other words
when you want to write a function or a class type
independent, go for templates.
template<class T>
void fun(T x, T y); // Is a Template function
template<typename T>
class abc{
T m;
}; // Is a Class Template
template<class T>
class abc{
T m;
}; // Is a Class Template
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / p suresh kumar
The template specifies a set of parameterized classes or
functions.
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / yughandhar
Templates is one of the features added to c++ recently.a
template can be considered as a kind of macro.
Templates are mainely used for creating the generic classes
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / debika mohapatra
Templates is one of the features added to c++ recently.a
template can be considered as a kind of macro.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rakesh kumar
Templates is one of the features added to c++ recently.a
template can be considered as a kind of macro.
Templates are mainely used for creating the generic classes
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / yughandhar
template is a kind of macro to create generic classes and
generic functions to do a specific task
| Is This Answer Correct ? | 1 Yes | 1 No |
wht is ditch
what are the realtime excercises in C++?
What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?
Please send ford technologies placement paper 2 my mail id
write a programe to calculate the simple intrest and compund intrest using by function overlading
How to improve object oriented design skills?
what i oops concept, how many languages supports oops concept?
write a program that takes input in digits and display the result in words from 1 to 1000
what is polymorpsim? what are its types?
what is the definition of incapsulation
What is constructor in oop?
why c++ is a highlevel language
3 Answers Satyam, Tech Mahindra,