In an interview I was asked if polymorphism can be achieved without inheritance. Is this possible?
|
|
The best explanation on the subject that I've ever read is an article by Luca Cardelli, a renown type theorist. The article is named On Understanding Types, Data Abstraction, and Polymorphism. Types of PolymorphismCardelli defines several types of polymorphism in this article:
The kind of polymorphism related to inheritance is classified as inclusion polymorphism or subtype polymorphism. Wikipedia provides a good definition:
Another Wikipedia artile called Polymorphism in object-oriented programming seems to answer your questions as well. In JavaThis subtyping feature in Java is achieved, among other means, through inheritance of classes and interfaces. Although the subtyping features of Java may not be evident in terms of inheritance all the time. Take for example the cases of covariance and contravariance with generics. Also, arrays are Serializable and Cloneable although this is not evident anywhere in the type hierarchy. It can also be said that through primitive widening conversion the numeric operators in Java are polymorphic, in certain cases even accepting totally unrelated operands (i.e. concatenation of strings and numbers or of a string plus some other object). These latter cases of polymorphism (coercions and overloading) are not at all related to inheritance. ExamplesInclusion
This is the case to which your question seems to refer. The case in which there is an inheritance or implementation relationship between the types, as in this case where ArrayList implements List. As I mentioned, though, when you introduce Java generics, some time the rules of subtyping get fuzzy:
And in other cases, the relationships are not even evident in the API
Even so, all these, according to Cardelli, are forms of universal polymorphism. Parametric
The same algorithm can be used to filter all kinds of lists with all kinds predicates without having to repeat a single line of code for every possible type of list. The type of the actual list and the type of predicate are parametric. See this example with lambda expressions available in JDK 8 Preview (for brevity of predicate implementation).
According to Cardelli, this is a form of universal polymorphism. Coercion
Integer and floating-point arithmetic are totally different. Applying the plus operator to two operands of different types here is impossible without some form of coercion. In this example, the types integer and double,are automatically coerced (converted) to type double without an explicit cast. The entire expression is promoted to double. This is so because in Java we have primitive widening conversions. According to Cardelli, this form of automatic coercion is a form of ad-hoc polymorphism provided for the plus operator. There are languages in which you could not even sum an integer and a floating-point number without an explicit cast (i.e. AFAIK, SML, in which, by the way, parametric polymorphism is key to overcome this kind of problems). Overloading
The plus operator here means two different things depending on the arguments used. Evidently, the operator has been overloaded. This implies it has different implementations depending on the types of operands. According to Cardelli, this is a form of ad-hoc polymorphism provided for the plus operator. This, of course, also applies to forms of method overloading in classes (i.e java.lang.Math methods min and max are overloaded to support different primitive types). In Other LanguagesEven when inheritance plays an important role in the implementation of some of these forms of polymorphism, certainly it is not the only way. Other languages that are not object-oriented provide other forms of polymorphism. Take, for example, the cases of duck typing in dynamic languages like Python, or algebraic data types and type classes in languages like Haskell. |
|||||||||||||
|
|
Sure. In Java, you can have two classes implement the same interface, and their results are polymorphic. No functionality is inherited.
Then elsewhere:
Both |
|||||||||||
|
In Java, no. In other languages, yes. In fact, any language that supports "duck typing" offers the possibility of polymorphism without (or independent of) inheritance. |
|||
|
|
|
Function overloading is one of the polymorphism (though it's not what real polymorphism is meant) which can be achieved without inheritance. e.g.
Arrest method is called 2 times but the path of execution of the code is different. *Again this is not true form of polymorphism. Real polymorphism in General can not be acheived without inheritance. |
|||||
|
|
Ad-hoc Polymorphism > Operator Overloading > Without Inheritence Ad-hoc Polymorphism > Method Overloading > Without Inheritence Ad-hoc Polymorphism > Method Overriding > With Inheritence Parametric Polymorphism > Generics > Without Inheritence Subtype Polymorphism or Inclusion Polymorphism > Polymorphic Assignment > With Inheritence Subtype Polymorphism or Inclusion Polymorphism > Polymorphic Return Type > With Inheritence Subtype Polymorphism or Inclusion Polymorphism > Polymorphic Argument Type > With Inheritence Coercion Polymorphism > Widening > With or without Inheritence Coercion Polymorphism > Auto boxing and unboxing > Without Inheritence Coercion Polymorphism > Var args > Without Inheritence Coercion Polymorphism > Type Casting > Without Inheritence |
|||
|
|
|
Static type overloading - which means multiple methods with same name but different signature which is possible with out overriding
Dynamic type overriding - which means the method in super class will be re-defined in sub class which needs inheritance
|
|||
|
|
|
Yes, I think they probably wanted to hear about polymorphism by interfaces. So if there 2 classes which implements from the same interface, then we can use in all places where we exspect an object with such intervace. See code from wikipedia:
|
||||
