Differentiate between a template class and class template?
Answer Posted / beena
Template class:
A generic definition or a parameterized class not instantiated until the client provides the needed information. It’s jargon for plain templates.
Class template:
A class template specifies how individual classes can be constructed much like the way a class specifies how individual objects can be constructed. It’s jargon for plain classes.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Difference between pointer to constant and constant pointer to a constant. Give example.
Explain the static member function.
What is the difference between multiple and multilevel inheritance in c++?
How can a struct in c++ differs from a struct in c?
How do you decide which integer type to use?
What is pointer -to-members in C++? Give their syntax?
When should we use multiple inheritance?
Why do we need runtime polymorphism in c++?
What is the difference between a template and a macro?
What is the best c++ book for beginners?
Differentiate between a pointer and a reference with respect to c++.
What is an undefined behavior and sequence points
Can a list of string be stored within a two dimensional array?
Why is c++ a mid-level programming language?
How do I run c++?