Contents Up << >>

Inheritance: General

Is inheritance important to C++?
When would I use inheritance?
How do you express inheritance in C++?
Is it ok to convert a pointer from a derived class to its base class?
Derived* --> Base* works ok; why doesn't Derived** --> Base** work?
Does array-of-Derived is-not-a-kind-of array-of-Base mean arrays are bad?