Introduction: This answer tries to focus on the basic aspects in current C++03 of dependent names, as well as the typename and template disambiguation keywords. Other aspects should be handled in another answer or another FAQ entry.
In order to parse a C++ program, you need to know for certain names whether they name types or non-types. The following should suffice as an example
t * f;
How should this be parsed? Usually, for simple languages for parsing you don't need to know the meaning of a name but can just grammatically analyze the input and then create a parse tree out of it. In C++, the above can yield different parse-trees depending on what t means. If it's a type, then it will be parsed as a declaration (and semantically it will declare f as a pointer variable). However if it's a non-type, it will be parsed as an expression. So the draft Standard says at 3.7
Some names denote types or templates. In general, whenever a name is encountered it is necessary to
determine whether that name denotes one of these entities before continuing to parse the program that
contains it. The process that determines this is called name lookup.
This however presents a problem in templates: How will you find out what a name t::x refers to, if t refers to a template type parameter? x could be a static data member or member function (non-type) or could equally well be a nested class or typedef.
Dependencies
In template declarations some constructs have different meanings depending on what template arguments you use to instantiate the template: Expressions may have different types or values, variables may have different types or function calls might end up calling different functions. Such constructs are generally said to depend on template parameters.
The Standard defines precisely the rules by whether a construct is dependent or not. It separates them into logically different groups: One catches types, another catches expressions. Expressions may depend by their value and/or their type. So we have, with typical examples appended
- Dependent types (e.g: a type template parameter
T)
- Value-dependent expressions (e.g: a non-type template parameter
N)
- Type-dependent expressions (e.g: a cast to a type template parameter
(T)0)
Most of the rules are intuitive and are built up recursively: For example, a type constructed as T[N] is a dependent type if N is a value-dependent expression or T is a dependent type. The details of this can be read in section 14.6.2/1 for dependent types, 14.6.2.2 for type-dependent expressions and 14.6.2.3 for value-dependent expressions.
Dependent names
Now of all the constructs that denote dependent types or expressions, a subset of them represent names. A name can take different forms - the draft Standard says
A name is a use of an identifier (2.11), operator-function-id (13.5), conversion-function-id (12.3.2), or template-id (14.2) that denotes an entity or label (6.6.4, 6.1)
An identifier is just a plain sequence of characters / digits, while the next two are the operator + and operator type form. The last form is template-name <argument list>. All these are names, and by conventional use in the Standard, a name can also include qualifiers that say what namespace or class a name should be looked up in.
A value dependent expression 1 + N is not a name, but N is. The subset of all dependent constructs that are names is called dependent name. Function names, however, may have different meaning in different instantiations of a template, but unfortunately are not caught by this general rule.
Dependent function names
Not primarily a concern of this article, but still worth mentioning: Function names are an exception that are handled separately. An identifier function name is dependent not by itself, but by the type dependent argument expressions used in a call. In the example f((T)0), f is a dependent name. In the Standard, this is specified at 14.6.2/1.
The "typename" keyword
Let's get back to our initial problem - how can we parse t::x * f;? The answer is: In this case, we decide how the compiler should parse this. If t::x is a dependent name, then we need to prefix it by typename to tell the compiler to parse it in a certain way. The Standard says at 14.6/2
A name used in a template declaration or definition and that is dependent on a template-parameter is
assumed not to name a type unless the applicable name lookup finds a type name or the name is qualified
by the keyword typename.
There are many dependent names for which typename is not necessary, because the compiler can, with the applicable name lookup in the template definition, figure out how to parse a construct itself - for example with T *f;, when T is a type template parameter. But for t::x * f; to be a declaration must be written as typename t::x *f;. If you omit the keyword and the name is taken to be a non-type, but when instantiation finds it denotes a type, the usual error messages are emitted by the compiler. Since whether it's a type or not determines parsing, you will often get parser errors already at definition time
// t::x is taken as non-type, but as an expression the following misses an
// operator between the two names or a semicolon separating them.
t::x f;
The syntax allows typename only before qualified names - it is therefor taken as granted that unqualified names are always known to refer to types if they do so.
A similar gotcha exists for names that denote templates, as hinted at by the introductory text.
The "template" keyword
Have you ever wondered how the following is parsed?
boost::function< int() > f;
Possibly not, because it might look obvious to a human reader. Not so for the compiler. Imagine the following arbitrary definition of boost::function and f
namespace boost { int function = 0; }
int main() {
int f = 0;
boost::function< int() > f;
}
That's actually a valid expression! It compares boost::function with zero (int()), and then compares the resulting bool against f. However as you might well know, boost::function in real life is a template, so the compiler knows (14.2/3)
After name lookup (3.4) finds that a name is a template-name, if this name is followed by a <, the < is
always taken as the beginning of a template-argument-list and never as a name followed by the less-than
operator
Now we are back to the same problem as with typename. What if we can't know yet whether the name is a template when parsing the code? We will need to insert template immediately before the template name, as specified by 14.2/4. This looks like
t::template f<int>(); // call a function template
Template names can not only occur after a :: but also after a -> or . in a class member access. You need to insert the keyword there too
this->template f<int>(); // call a function template
Additional notes and examples
In enough cases we need both of typename and template. Your code should look like the following
template <typename T, typename Tail>
struct UnionNode : public Tail {
// ...
template<typename U> struct inUnion {
typedef typename Tail::template inUnion<U> dummy;
};
// ...
};
The keyword template doesn't always have to appear in the last part of a name. It can appear in the middle before a class name that's used as a scope, like in the following example
typename t::template iterator<int>::value_type v;
In some cases, the keywords are forbidden, as detailed below
On the name of a dependent base class you are not allowed to write typename. It's assumed that the name given is a class type name. This is true for both names in the base-class list and the constructor initalizer list
template <typename T>
struct derive_from_Has_type : /* typename */ SomeBase<T>::type
{ };
In using-declarations it's not possible to use template after the last ::, and the C++ committee said not to work on a solution.
template <typename T>
struct derive_from_Has_type : SomeBase<T> {
using SomeBase<T>::template type; // error
using typename SomeBase<T>::type; // typename *is* allowed
};
In current C++, typename and template is disallowed anywhere outside a template, including explicit (full) template specializations. In C++0x, this will be allowed for both template and typename.
template <> struct derive_from_Has_type<int> {
typedef Int<int>::template Has_Type<int> type; // error
};