Presentation is loading. Please wait.

Presentation is loading. Please wait.

Inheritance Basics Fall 2008

Similar presentations


Presentation on theme: "Inheritance Basics Fall 2008"— Presentation transcript:

1 Inheritance Basics Fall 2008
Dr. David A. Gaitros

2 The Reason for Inheritance
“Why write the same code twice?” This sums up the reason for inheritance quite nicely. Take the example of an employee database. There are many kinds of employees which have different attributes (data points) that need to be tracked for each one. However, there are some attributes that are common to ALL employees. This code should be written and “inherited” by those modules that handle the specifics for each type of employee.

3 Inheritance Examples of relationships
A class called Geometric_Objects could derive classes like Circle, Square, and Line A class called Sport could derive classes like Football, Baseball, and Soccer A class called BankAccount could derive classes such as Checking, Savings, and Debit A class called vehicle could derive classes called Car, Train, Bus, Motorcycle, and Airplane We could use the Car class as a base class and derive other classes such as Ford, Toyota, Buick, Honda, etc.

4 Inheritance Declaring a Derived Class
“When we say that some class D is a derived of some other class B, we are saying that class D has all of the features of class B but with some extra. Class B is called the base class. //class derivedclassname: public baseclassname // class Sport { …. } class Football: public Sport { …

5 Inheritance Layers of Inheritance class Vehicle { … }
class Car: public Vehicle { … class Honda: public Car { …

6 Protection Levels public – Any member that is public can be directly accessed by name from anywhere. Poor practice to have data values with public access. private – Any member that is private can only be accessed directly only by the class in which it is declared. protected – Any member that is protected can be access directlry by the class in which it was declared and any classes that are derived.

7


Download ppt "Inheritance Basics Fall 2008"

Similar presentations


Ads by Google