Is Interfaces in Java, a kind of polymorphism?
|
|
No. Interfaces in Java are a construct to get polymorphism ( subtype polymorphism ) working in Java, but they are not a "kind" of polymorphism. In polymorphism happens when two objects respond to the same message ( method call ) in different way ( hence poly -> many, morphism -> way or shape : polymorphism -> many ways). In Java to be able to send the same message to two different objects you have to either inherit the same parent, or implement the same interface. |
||||
|
|
In a sense, yes, but polymorphism usually refers to an objects ability to have different behaviors than that of it's parent class. http://download.oracle.com/javase/tutorial/java/IandI/polymorphism.html Using an interface among multiple classes ensures that all subclasses have to implement those methods, and thus the objects could be stored in an instance of the superclass to allow for dynamic programming. Read the link for a better example. |
|||
|
|
|
No Polymorphism means multiple forms. Interface is a construct in Java for declaring static fields and declaring methods which will be implemented in classes implementing the Interface using keyword implement. Interfaces are not "a kind of" Polymorphism rather we use interfaces to get Polymorphism in Java. This does not means that to get Polymorphism in Java we necessarily need Interfaces. Polymorphism can also be implemented using abstract classes. |
|||
|
|
