Introduction to Polymorphism

Get an overview of 'polymorphism'.

What is polymorphism?

Polymorphism is the property of something having many forms. Any object that can pass more than one “is-a” test is considered to be polymorphic. In Java, all objects are polymorphic since any object will pass the is-a test for their own type and the ...