أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
Definition - What does Polymorphism mean?
Polymorphism is an object oriented programming concept to refer to the ability of a variable, function, or object to take on multiple forms. A language that features polymorphism allows developers to program in the general rather than program in the specific.
Techopedia explains Polymorphism
In a programming language that exhibits polymorphism, objects of classes belonging to the same hierarchical tree (i.e. inherit from a common base class) and may possess functions bearing the same name but each having different behaviors.
As an example, let us assume you have a base class named Animals from which the subclasses Horse, Fish and Bird are derived. Let us also assume that the Animals class has a function named Move, which is inherited by all subclasses mentioned. With polymorphism, each subclass may have its own way of implementing the function. So, for example, when the Move function is called in an object of the Horse class, the function might respond by displaying trotting on the screen. On the other hand, when the same function is called in an object of the Fish class, swimming might be displayed on the screen. In the case of a Bird object, it may be flying.
In effect, polymorphism trims down the work of the developer because he can now create a sort of general class with all the attributes and behaviors that he envisions for it. When the time comes for the developer to create more specific subclasses with certain unique attributes and behaviors, the developer can simply alter code in the specific portions where the behaviors will differ. All other portions of the code can be left as is.
Polymorphism is the ability to represent more than one form
there are two types of representaions
POLYMORPHISM--
BEHAVING IN DIFFERENT WAYS DEPENDING UPON INPUT RECIEVED IS KNOWN AS POLYMORPHISM.THAT IS WHENEVER INPUT CHANGES AUTOMATICALLY THE OUTPUT OR BEHAVIOUR ALSO CHANGES.
POLY MEANS- MANY
MORPHISM MEANS--FORMS
MANY FORMS OR ROLES PERFORMED BY SINGLE ENTITY IS POLYMORPHISM.
POLYMORPHISM CAN BE IMPLEMENTED IN OOP USING3 DIFFERENT APPROACH--
1.OVERLOADING
2.OVERRIDING
3.HIDING/SHADOWING
OVERLOADING IS AGIAN OF3 TYPES--
--METHOD OVERLOADING
--CONSTRUCTOR OVERLOADING
--OPERATOR OVERLOADING
Polymorphism is one of Object Oriented Programming Concept.
Polymorphism is the abilty to take on many forms.Applied both to objects and to operations.
One operation,Many methods.
Two types of polmorphism:
Static(compile time) polymorphism means that the information required to call,a function is available at compile time itself.It is achieved through function overloading,operator overloading and even function templates.
Dynamic(run time) polymorphism means that the information required to call a function is not known until run time.It is achieved through inheritance and virtual functions.
Eg:A plus '+' sign,used for adding two integers or for using it to concatenate two strings.
When same message is passed to different objects, each object responds differently depending upon its class. zthis is polymorphism.It is applied only to instance method and not to variables and static methids.
polymorphism is a feature of oops where one interface is used for general class of action.
In short, polymorphism is the change in behavior of an object at runtime.