Answer Posted / navieen
Polymorphism means the ability of a single variable of a
given type to be used to reference objects of
different types, and automatically call the method that is
specific to the type of object the variable references.
The benefit of polymorphism is that it is very easy to add
new classes of derived objects without breaking the calling
code that uses the polymorphic classes or interfaces.
When you send a message to an object even though you
don’t know what specific type it is, and the right thing
happens, that’s called polymorphism. The process used by
object-oriented programming languages to implement
polymorphism is called dynamic binding.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is a pointer and does java support pointers?
What is a nullable field?
Explain the inheritance?
Does list maintain insertion order java?
How we can run a jar file through command prompt in java?
Is java good for beginners?
Is double bigger than float?
What are meta-annotations?
What is the null?
How do you square a number in java?
State the merge-sort principle and its time complexity.
What is a locale?
What is difference between array and vector?
What is the difference between delete and delete[]
What is double checked locking in singleton?