Title probably doesn't make a lot of sense, so I'll start with some code:
class Foo : public std::vector<Foo>
{
};
...
Foo f;
f.push_back( Foo() );
Why is this allowed by the compiler? My brain is melting at this stage, so can anyone explain whether there are any reasons you would want to do this? Unfortunately I've just seen a similar pattern in some production C# code and wondered why anyone would use this pattern.
std::vector<Foo>is just yet-another-type, and you can inherit from it just like any other class type. That said, your example in particular is bad because most of the standard library isn't designed to be inherited from. – GManNickG Apr 22 '10 at 9:37std::vector<Foo>is a type that depends onFoo, which is just being defined. Or in other words: A foo is a vectors of foos, so a foo is a vector of vectors of foos, so a foo is a vector of vectors of vectors of foos... ad infinitum. – sepp2k Apr 22 '10 at 9:41