vote up 6 vote down star
2

What is the difference between a template class and a class template?

flag

3 Answers

vote up 15 vote down check

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:

template class <typename T> MyClassTemplate
{ 
    ...
};

The declaration MyClassTemplate<int> is a class, or pedantically, a class based on a template. There are no special properties of a class based on a template vs. a class not based on a template. The special properties are of the template itself.

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.

link|flag
Well worded answer. – BobbyShaftoe May 18 at 22:08
+1. Sometimes it's useful for whatever reason to distinguish the "origin" of a class, in which case you can reasonably use the term "template class" -- but for the reasons you gave, it's a good idea to define carefully what you mean by this. – j_random_hacker May 19 at 15:03
1  
@j_random_hacker - see litb's answer below, but in short, the preferred term for that is "class template specialization" – Not Sure May 19 at 21:37
@Not Sure: Well actually I find "class template specialization" slightly ambiguous, since it can also refer to the process of defining an explicit or partial specialisation for a template -- something that's not needed to produce an actual "class". :) IMHO "class template instantiation" is the clearest term. – j_random_hacker May 22 at 3:10
2  
@j_random_hacker: There is a proper term for it - "explicit class template specialization" and "partial explicit class template specialization.". Cumbersome, but not ambiguous :) – Not Sure May 22 at 18:31
vote up 1 vote down

A template class is related to the Template Method design pattern, while class template is just a "fill-in-the-blanks" class template.

link|flag
vote up 5 vote down

You can memorize it this way. There are the basic entities (3/3 in the standard) types, functions and templates. Some entities can instantiate other entities. Templates can instantiate functions and types.

Now, there are different kind of types. We will watch only those that are of interest here

class-types
describe:
    classes (declared with struct or class)
    unions

function-types 
describe:
    functions

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:

class-templates
function-templates

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 template class to refer to class-templates. However, uses of it were changed to read class template for the 2003 revision of it. Here is an example concerning with overload resolution. Template functions which could accept a call are considered, and template arguments for the templates are found and substituted where the corresponding parameters are used in the function (13.3.1/7):

In each case where a candidate is a function template, candidate template functions are generated using template argument deduction (14.8.3, 14.8.2). Those candidates are then handled as candidate functions in the usual way. A given name can refer to one or more function templates and also to a set of overloaded non-template functions. In such a case, the candidate functions generated from each function template are combined with the set of non-template candidate functions.

The intend of that is that it wants to refer to functions when it says template fuction, and to its template when it says function template. However that's confusing, and was changed in C++03 to this:

In each case where a candidate is a function template, candidate function template specializations are generated using template argument deduction (14.8.3, 14.8.2). Those candidates are then handled as candidate functions in the usual way. A given name can refer to one or more function templates and also to a set of overloaded non-template functions. In such a case, the candidate functions generated from each function template are combined with the set of non-template candidate functions.

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 function template specialization and analogous class template specialization instead of the ambiguous term template function or template class.

link|flag
1  
+1, nice to know the standards committee themselves added to this confusion – Not Sure May 19 at 0:07
2  
Hehe. Yeah and several others also still contribute to that set. Notably the C++ Faq lite, and the Qt documentation. The author of the faq lite told me in a mail that he wants to put another FAQ item explaining that using the word "specialization" is better since it causes less confusion (using "explicit specialization" for the kind of specialization written by the user, then). The Qt guys told me they don't want to use the term "class template".... they find it too "unnatural". Too bad. – Johannes Schaub - litb May 19 at 0:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.