As Merlyn said, it takes a long chapter to explain polymorphism, but let me try explaining by simple example.
Let's say you are asked to move the jetplane and the boat and check if each of them moved. Then you could do this:
Aircraft jetPlane = new Aircraft();
jetPlane.moveForward();
boolean movementStatus = jetPlane.didItMoveForward();
Boat boat = new Boat();
boat.moveForward();
boolean movementStatus = boat.didItMoveForward();
Or this
boolean moveIt(Aircraft plane) {
plane.moveForward();
boolean movementStatus = jetPlane.didItMoveForward();
return movementStatus;
}
....
Aircraft jetPlane = new Aircraft();
boolean status = moveIt(jetPlane);
....
boolean moveIt(Boat boat) {
boat.moveForward();
boolean movementStatus = boat.didItMoveForward();
return movementStatus;
}
....
Boat boat = new Boat();
status = moveIt(boat);
Now, as you can see above, you have to define a specific method for each type of vehicle. This is going to cause code-duplication and the code is not reusable. Here's where the polymorphism comes into picture.
Let's say you were to have your method this way:
boolean moveIt(Vehicle vehicle) {
vehicle.moveForward();
boolean movementStatus = vehicle.didItMoveForward();
return movementStatus;
}
Aircraft jetPlane = new Aircraft();
boolean status = moveIt(jetPlane);
Boat boat = new Boat();
status = moveIt(boat);
As you can see above, due to the polymorphic nature of the vehicle instances (plane and boat), one method moveIt is sufficient for a good reuse of logic.
HTH, K