Here is my Homework question I want to solve:
R-2.9 Consider the inheritance of classes from Exercise R-2.5, and let d be an object variable of type Horse. If d refers to an actual object of type Equestrian, can it be cast to the class Racer? Why or why not?
here is exercise R-2.5:
R-2.5 Draw a class inheritance diagram for the following set of classes:
• Class Goat extends Object and adds an instance variable tail and methods milk() and jump().
• Class Pig extends Object and adds an instance variable nose and methods eat() and wallow().
• Class Horse extends Object and adds instance variables height and color, and methods run() and jump().
• Class Racer extends Horse and adds a method race().
• Class Equestrian extends Horse and adds an instance variable weight and methods trot() and isTrained().
Horse h = new Equestrian(); Racer r = (Racer)h;. – Aasmund Eldhuset Feb 26 '11 at 20:28