I was recently surprised to know that this code compiles (at least on gcc and MSVC++):

template<typename T>
class A {
public:
    T getT() { return T(); }
};

class B : public A<B> { };

When this doesn't:

class A;

class B : public A { };

class A {
public:
    B getB() { return B(); }
};

It seems weird to me that a template class could take an incomplete type as a template parameter and have a function that returned one by calling its constructor and still compile. So where exactly are complete types required (or if the list would be shorter, where are they not required)?

link|improve this question

It might help if you think of templates not as code but rather as a code generation tool, and only actual code needs to make semantic sense. – Kerrek SB Feb 2 at 20:26
@KerrekSB Yes, but I was unclear as to when the code generation tool actually generated its code. I'm clear on it now though. – Seth Carnegie Feb 2 at 22:22
feedback

3 Answers

up vote 2 down vote accepted

Following are the scenarios where Complete types are not required:

  • Declaring a member to be a pointer or a reference to the incomplete type.
  • Declaring functions which accepts/return incomplete types.
  • Defining functions which accept/return pointers/references to the incomplete type.
  • As a template type argument.

Basically You are fine using an Incomplete type, at any place where the compiler does not need to know the memory layout of the type.

As for the template type argument being allowed to be an Incomplete type, the Standard explicitly says so in 14.3.1 Template type arguments

link|improve this answer
I believe struct a; a * p; and union b; b * p; will compile fine, you just don't want to dereference the pointer. However, union c; c * p; would result in a compile error. – Jesse Good Feb 2 at 4:28
Dereferencing does need a complete type so Yes to the first two. However, I don't see a difference between the third expression and the second expression,Am I missing something? – Als Feb 2 at 4:31
Check out this SO question. Also, I tested on ideone and got the following error for enums. – Jesse Good Feb 2 at 4:47
@Als I'm not sure about "Basically You are fine using an Incomplete type, at any place where the compiler does not need to know the memory layout of the type." If class B declares public: typedef int TInt;, class A < T > cannot use typedef T::TInt TIntFromDerived;, when class B : public A< B >{...};. I don't think typdef has anything to do with memory layout of B, but it's not defined yet, nonetheless. – AzzA Feb 2 at 4:53
Are there any special rules for how you can use the template type argument in a template if it is an incomplete type? – Seth Carnegie Feb 2 at 5:46
show 4 more comments
feedback

This is how CRTP works due to two stage template parsing. Template member functions are not parsed until their instantiation.

EDIT: Maybe, the wording is not very precise. What I meant to say that when compiler sees class B : public A< B > {...};, it goes through A< B >, notices that there is a function B get() {...}, but does not evaluate its definition, leaving it until function's actual instantiation, at which point B has to be a complete type.

EDIT: I believe, the exact rules are covered in Standard section 14.6 (as Als pointed out in his answer). It deals with dependent and non-dependent names and their resolution at different times during compilation according to two-phase template name look-up. However, unfortunately, the two-phase name look-up implementation can differ from Standard on different compilers. Same code might compile on GCC and might not on MSVC++ and vice versa. Even more, seemingly same code might be rejected by same compiler. On MSVC++ I had an issue when base class was using a pointer to derived class function as a default argument for its function. It did not compile under MSVC++ and compiled under GCC (correctly). However, using derived class constructor as a default parameter compiled with both compilers, even on MSVC++. Go figure.

link|improve this answer
Member functions of a class template are parsed at the point of the definition (this is the reason for using typename and template to indicate that a member is a type or template resp.), but they are not instantiated before usage. – Begemoth Feb 2 at 4:13
I guess, I tried to say that function definition is not evaluated at the first stage of parsing. – AzzA Feb 2 at 4:17
Sorry, but when is the function's actual instantiation? When it is called? – Seth Carnegie Feb 2 at 5:46
@SethCarnegie When when function is called or its address taken. – AzzA Feb 2 at 6:00
@SethCarnegie For example, B tmp; implicitly instantiates A< B > due to inheritance, while B is still being instantiated and is not complete. Declaration of get(); in A< B > is noticed by compiler, but its definition is not evaluated, A< B > and then B get instantiated. If later you call tmp.get(); at this point compiler will instantiated get(); and will require B to be a complete type (which it is now). If you will never call get();, compiler will not even generate code for it. – AzzA Feb 2 at 6:09
feedback

A template isn't really code; it's a template that describes how to build the code, once you fill in the missing pieces (the type parameters). Because of this the compiler allows more leeway in a template definition than it does an actual code definition. When you actually use the template, with the types identified, the compiler needs to generate actual code and all the usual rules apply.

A full definition isn't required if the compiler doesn't need to know the size or offsets to members of the object. Defining a pointer or reference to a class for example doesn't need either of those. At the point where you try to use the pointer or reference you will need a full definition.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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