I was wondering if someone could explain to me how I might be able to implement something similar to this:
// dje1990
namespace advanced_cpp_oop
{
class A
{
B b;
};
class B : public A
{
};
}
int main()
{
}
Where an instance of a base class can contain an instance of a derived class? When the above code is compiled the following error is generated:
g++ advanced_cpp_oop.cpp
advanced_cpp_oop.cpp:8:5: error: ‘B’ does not name a type
The (almost) equivalent Java code which does compile is:
// dje1990
public class AdvancedCppOop
{
public static void main(String[] args)
{
A a;
}
}
class A
{
B b;
}
class B extends A
{
}
Thanks
Awould have a certain size (including the embeddedB), sayNbytes. But then aBwould be at least as big, since it contains all the fields anAdoes, soAneeds to be bigger to accomodate, which meansBneeds to be bigger, ..... Also, theBthat anAcontains must contain anAas it's base object, and thatAmust contain aB, which must contain anA, .... – twalberg Jan 11 at 21:13