What are the advantages of polymorphism in Java ?
Polymorphism is the third essential feature of an object-oriented programming language, after data abstraction and inheritance. I have seen lot's of people NOT clear with what polymorphism is or they often stumble when somene ask them to explain, so be very sure what it is. Just remember this - Poly means Multiple and Morphe means types Shape. So Polymorphism deals with one thing which can have multiple shapes. Polymorphism can be applied on both datatypes as well as on Functions. I will highly advice you to check Wiki Link on Polymorphism Polymorphism allows improved code organization and readability as well as the creation of extensible programs that can be “grown” not only during the original creation of the project, but also when new features are desired. If you still don't understand it than post in forum and I will see what I can do for you. It's a very abstract topic actually.

Re: What are the advantages of polymorphism in Java ?
hello
i am student studying in a university in australia and currently i am doing the java subject.
i am very interested with the java feature polymorphism and what i want to know is what are the advantages of the polymorphism.
thanks
Re: What are the advantages of polymorphism in Java ?
Hello,
Polymorphism stans for Poly(Multiple) + morhism(foru) which means multiple forms.
It is an OOP feature through which multiple things can be done with only one code by changing its input parameters.
You may find this article interesting http://www.javaworld.com/javaworld/javatips/jw-javatip30.html
Cheers
Re: What are the advantages of polymorphism in Java ?
hi..
Am doing my project in java ... I want real time example of polymorphism ????