I was watching a googletechtalks video and they frequently refered to polymorphism what is it, what is it for, and how it it used?
|
1
|
|||||||||||||||||||||
|
|
|
If you think about the (Latin, I think) roots of the term, it should become obvious.
So polymorphism is the ability (in programming) to present the same interface for differing underlying forms (data types). For example, integers and floats are implicitly polymorphic since you can add, subtract, multiply and so on, irrespective of the fact that the types are different. They're rarely considered as objects in the usual term. But, in that same way, a class like The classic example is the With polymorphism, each of these classes will have different underlying data. A point shape needs only two co-ordinates. A circle needs a center and radius. A square or rectangle needs two co-ordinates for the top left and bottom right corners (and possibly) a rotation. And, by making the class responsible for its code as well as its data, you can achieve polymorphism. In this example, every class would have its own
to get the correct behavior for any shape. This is in contrast to the old way of doing things in which the code was separate from the data, and you would have had functions such as Object orientation, polymorphism and inheritance are all closely-related concepts and they're vital to know. There have been many "silver bullets" during my long career which basically just fizzled out but the OO paradigm has turned out to be a good one. Learn it, understand it, love it - you'll be glad you did :-) |
||||
|
|
|
Polymorphism is the ability of the programmer to write methods of the same name that do different things for different types of objects, depending on the needs of those objects. For example, if you were developing a class called
Outputs:
Some of the other answers seem to imply that polymorphism is used only in conjunction with inheritance; for example, maybe At least in dynamically-typed languages like PHP (I don't know about C++ or Java), polymorphism allows the developer to call a method without necessarily knowing the type of object ahead of time, and trusting that the correct implementation of the method will be called. For example, say the user chooses the type of
In this case, the appropriate |
||||||
|
|
|
Generally speaking, it's the ability to interface a number of different types of object using the same or a superficially similar API. There are various forms:
|
||
|
|
|
|
This answer emphasises the general principle at work - service defined up front, implementation details left as an exercise to the implementer: http://stackoverflow.com/questions/409969/polymorphism-define-in-just-two-sentences/724396#724396 This answer is orbiting around the same idea - if it walks like a duck: This answer - same syntax, different semantics - is true to the extent that the semantics defined by the interface can be as loose or tight as the designer decrees: |
||
|
|
|
|
The term polymorphism comes from: poly = many morphism = the ability to change In programming, polymorphism is a "technique" that lets you "look" at an object as being more than one type of thing. For instance: A student object is also a person object. If you "look" (ie cast) at the student, you can probably ask for the student ID. You can't always do that with a person, right? (a person is not necessarily a student, thus might not have a student ID). However, a person probably has a name. A student does too. Bottom line, "looking" at the same object from different "angles" can give you different "perspectives" (ie different properties or methods) So this technique lets you build stuff that can be "looked" at from different angles. Why do we use polymorphism? For starters ... abstraction. At this point it should be enough info :) |
||
|
|
|
|
I think this is an extremely valueable questions all though not in the way you intended. ;) |
|||
|
|
|
|
In Object Oriented languages, polymorphism allows treatment and handling of different data types through the same interface. For example, consider inheritance in C++: Class B is derived from Class A. A pointer of type A* (pointer to class A) may be used to handle both an object of class A AND an object of class B. |
||
|
|
|
|
Let's use an analogy. For a given musical script every musician which plays it gives her own touch in the interpretation. Musician can be abstracted with interfaces, genre to which musician belongs can be an abstrac class which defines some global rules of interpretation and every musician who plays can be modeled with a concrete class. If you are a listener of the musical work, you have a reference to the script e.g. Bach's 'Fuga and Tocata' and every musician who performs it does it polymorphicaly in her own way. This is just an example of a possible design (in Java):
|
|||
|
|
|
|
Polymorphism is the ability to treat a class of object as if it is the parent class. For instance, suppose there is a class called Animal, and a class called Dog that inherits from Animal. Polymorphism is the ability to treat any Dog object as an Animal object like so:
|
||
|
|
|
|
Assuming OOP General Type Polymorphism Most OOP books include sections on this. |
||||||||||||||||
|
|
|
Usually this refers the the ability for an object of type A to behave like an object of type B. In object oriented programming this is usually achieve by inheritance. Some wikipedia links to read more: EDIT: fixed broken links. |
||||||||
|
|
|
Polymorphism is an important concept in object oriented programming which allows the programmers to know just what they must know. It is the perfect example of "sometimes less is more!" EDIT: Not sure why it is attracting down-votes but as far as I see; polymorphism, interfaces, delegates are all techniques of decoupling yourself from things you don't need to know. Oh yes, the word is "abstraction"... |
|||
|
