Lab Lab title -Mammals Topic- Inheritance
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