Differentiate between a template class and class template?
Answer / 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 |
What is this pointer in c++?
What causes a runtime error c++?
What is the difference between #import and #include in c++?
how to swap two strings without using any third variable ?
What are the advantage of using register variables?
Disadvantages of c++
Is rust better than c++?
What do the header files usually contains?
Is there a sort function in c++?
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.
What is the purpose of the "delete" operator?
Who was the creator of c++?