in this code, compiler complain about undefined MyClassB, which is understandable :

class MyClassA;
class MyClassB;

template <class T> class BaseClass : public T {
};

class MyClassA : public BaseClass<MyClassB> {
};

class MyClassB : public BaseClass<MyClassA> {
};

but in this code, compile is successful and no complain about MyClassB :

class MyClassA;
class MyClassB;

template <class T> class BaseClass : public T {
};

class MyClassA : public BaseClass<std::vector<MyClassB>> {
};

class MyClassB : public BaseClass<std::vector<MyClassA>> {
};

why the second code compile, since MyClassB is not yet defined when constructing std::vector<MyClassB>?

link|improve this question

Tangentially related: stackoverflow.com/questions/3074872/typedef-and-incomplete-type – GManNickG Mar 28 '11 at 22:34
good quality standard library implementations have flags that enable the check of such conditions. For example, libstdc++: codepad.org/aq9eOhHO – Johannes Schaub - litb Mar 28 '11 at 22:35
(there is no CRTP going on here. The code says class MyClassB : BaseClass<... MyClassA ...>, rather than class MyClassB : BaseClass<... MyClassB ...>. Therefor, I removed that tag to include "circular-dependency" and "incomplete-type" which appear to be the two main problems here). It's late, so I might have missed some better combination of tags. Sadly, saying "class-template" will not have the tag "template", which this question really should be tagged as. Splitting it into two tags would require 6 tags... – Johannes Schaub - litb Mar 28 '11 at 22:46
feedback

2 Answers

up vote 6 down vote accepted

Because your implementation of std::vector allows an incomplete type. This is a side effect of the instantiation rules of member functions of class templates: they aren't instantiated until they're used. So the functions that do need it to be a complete type aren't instantiated, yet. So no errors.

Contrarily, it does need to be a complete type to be a base class, so you get an error in that case.


However, it's actually undefined behavior to pass an incomplete type to std::vector (or any other standard library container), and "it works" is a valid undefined outcome. You shouldn't do it.

link|improve this answer
if i do class A : public std::vector<B> and class B : public std::vector<A> is this lead to undefined behaviour too? – uray Mar 28 '11 at 22:36
@uray: Yes, because of std::vector<B>; B is incomplete. – GManNickG Mar 28 '11 at 22:40
@Gman : that's weird, that codes compile and work as expected on Visual Studio 2010 – uray Mar 28 '11 at 22:41
@uray: Yes, "works as expected" is an unfortunate possible outcome of undefined behavior. :) That code is free to do anything on any C++ compiler. – GManNickG Mar 28 '11 at 22:43
1  
@uray: You need to use pointers somewhere in your design. – GManNickG Mar 28 '11 at 23:01
show 6 more comments
feedback

Lookup the "Curiously Recurring Template Pattern".

Your BaseClass class uses its template argument as a base class, which requires a complete type.

The second version of the code just passes the template argument to another template, an incomplete type is allowed in that case, if the second template doesn't do anything requiring a complete type. If you used the argument in any way that required a complete type, it wouldn't be allowed either.

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.