Simple Inheritance Problem
Simple Inheritance Problem
class Animal {
void walk() {
System.out.println("I am walking");
}
}
This class has only one method, walk. Next, we want to create a Bird class that also has a fly method. We do this
using extends keyword:
Finally, we can create a Bird object that can both fly and walk.
This means that a Bird object has all the properties that an Animal object has, as well as some additional unique
properties.
You must add a sing method to the Bird class, then modify the main method accordingly so that the code prints the
following lines:
I am walking
I am flying
I am singing