PPT Slide
Polymorphism
class Animal {
public void move ( ) {
System.out.println(“I am an animal and am moving.”);
} // of move
} // of Animal
class Fish extends Animal {
public void move( ) {
System.out.println(“Glug glug gurgle gurgle”);
} // of move
} // of Fish
class Bird extends Animal {
public void move( ) {
System.out.println(“Tweet tweet flap flap”);
} // of move
} // of Bird
Previous slide
Next slide
Back to first slide
View graphic version