poly
what is the exact meaning of polymorphism.While implementing the phenomenon of polymorphism by means of classes do the methods will belong to the same class or in different classses.
Former Member replied
1.Allows one interface to be used for a general class of actions.
2.When objects from different classes react differently to the same procedural call.
3.User can work with different classes in a similar way, regardless of their implementation.
4.Allows improved code organization and readability as well as creation of extensible programs.
5.Although the form of address is always the same, <b>the implementation of the method is specific to a particular class.</b>
Hope these clauses regarding POLYMORPHISM solve ur doubt..
Reward if helpful