June 4, 2002 - Examples for Applying Inheritance | WebReference

June 4, 2002 - Examples for Applying Inheritance

Yehuda Shiran June 4, 2002
Examples for Applying Inheritance
Tips: June 2002

Yehuda Shiran, Ph.D.
Doc JavaScript

There are several classic examples for inheritance. They usually define a class for a generic entity as the base class, and then extend it to a more refined, specialized class. A person class in an organization may be extended to an employee class of that organization. An employee class may be further extended to a manager class. Likewise, an automobile class may be the base class in a car dealership. It may be extended to a sedan class, a truck class, or a sports class. Each of these classes may be further refined to classes of specific makes and models.

To learn more about JScript .NET, go to Column 110, JScript .NET, Part IV: Inheritance.