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
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is c++ w3school?
You run a shell on unix system. How would you tell which shell are you running?
Which operations are permitted on pointers?
What is c++ code?
Explain what are single and multiple inheritances in c++?
Should a constructor be public or private?
Write a struct time where integer m, h, s are its members?
what is COPY CONSTRUCTOR and what is it used for?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
What is an iterator class in c++?
Is c++ a good beginners programming language?
Explain the difference between c & c++?
What do you mean by vtable and vptr in c++?
What do you mean by stack unwinding in c++?