What is the difference between a template class and a class template?
|
2
|
|
|
|
|
|
This is a common point of confusion for many (including the Generic Programming page on Wikipedia, some C++ tutorials, and other answers on this page). As far as C++ is concerned, there is no such thing as a "template class," there is only a "class template." The way to read that phrase is "a template for a class," as opposed to a "function template," which is "a template for a function." Again: classes do not define templates, templates define classes (and functions). For example, this is a template, specifically a class template, but it is not a class:
The declaration The phrase "template class" means nothing, because the word "template" has no meaning as an adjective when applied to the noun "class" as far as C++ is concerned. It implies the existence of a class that is (or defines) a template, which is not a concept that exists in C++. I understand the common confusion, as it is probably based on the fact that the words appear in the order "template class" in the actual language, which is a whole other story. |
||||||||||||||
|
|
|
A template class is related to the Template Method design pattern, while class template is just a "fill-in-the-blanks" class template. |
||
|
|
|
|
You can memorize it this way. There are the basic entities ( Now, there are different kind of types. We will watch only those that are of interest here
Now, these entities can be created by the programmer by writing code that defines them. But they can also be instantiated out of templates. There are two kind of templates for that:
For each kind of class-types, you can write a template (that is, for unions and classes). And for function-types, there are function-templates that can instantiate functions. Seen this way, it's more logical. The Standard as of 1998 used the term
The intend of that is that it wants to refer to functions when it says
When you want to refer to an instantiated function that were generated from a function template (and analogous to a class generated from a class template), then refer to those using the term |
||||||||
|
