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>?
class MyClassB : BaseClass<... MyClassA ...>, rather thanclass 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