Lab
Lab title -Mammals
Topic- Inheritance


In this lab create 4 classes.

1. A driver class called Life(main method)
Creates a bat object
Creates a horse object
print out info about each object it creates

2. A parent class called Mammals
(All mammals feed young milk)

3. Two child classes: Horse and Bat
methods:
Move (fly or run)
FeedYoung(milk) -derive from parent

BACK