what is the usage of clas templates
Answers were Sorted based on User's Feedback
Answer / saurabh chauhan
templates are used to create generic functions as well as
classes..which can support miltiple data types..
they are mainly used when algorithm is commom for diff data
types...so we dont hav to implement again and again for
diff data types ..we make a generic func. which works for
all...
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / anil kumawat
through this we can make generic function. so this function
will work for any data type.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / anil bisht
A template is a C++ feature that allows functions and
classes to be defined with any type.Class template is a
template used to generate template classes. You cannot
declare an object of a class template.Template class is an
instance of a class template.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / james prasanna.j
We can able to operate "class template" functionalities in
generic way, which supports different data types.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / keshav.gadde
Template is a mechanism that allows one function or class to
deal with diffrent data types.
Using templates we can design a template class that operates on
diffrent data types.
| Is This Answer Correct ? | 0 Yes | 1 No |
function overridind means and simple program
features of OOPS
22 Answers Ness Technologies, Satyam,
What is the point of polymorphism?
how do u initialize the constant variables
Why do we use class?
What is coupling in oop?
when to use 'mutable' keyword and when to use 'const cast' in c++
What makes a language oop?
In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond? 1) The first argument passed into the program 2) The program name 3) You can't define main like that
Why do we use virtual functions?
Can abstract class have normal methods?
what are the ways in which a constructors can be called?