derived class

derived class

(programming)(Or "subclass") In object-orientedprogramming, a class that is derived from a base class byinheritance. The derived class contains all the features ofthe base class, but may have new features added or redefineexisting features.

The synonym "subclass" is possibly confusing since the derivedclass has a superset of the base class's features.

Compare derived type.