Crea una nuova gerarchia di ereditarietà con l'aiuto di C ++. Penso a:
Why there is no inheritance from the class objects? Abstract example (on abstract C++):
struct Foo { int v; Foo(int a) : v(a) {} }; struct Buz : public Foo(2) { ... }
So, the
Buz
is inherited only from instance ofFoo
-Foo(2)
.
Questa idea può essere utile? Esistono possibili implementazioni o idee correlate?