I was asked in an interview how you can achieve dynamic polymorphism without extending a class. How can this be done?
|
To achieve dynamic polymorphism following rules must be obeyed.
The rule followed is "when a subclass object is assigned to a super class object, the super object will call subclass overridden method". More Details visit maanavan.com |
|||
|
|
|
Decorator design pattern that exploits encapsulation is what you're looking for. Polymorphism through inheritance:
Polymorphism through encapsulation (Decorator pattern):
|
|||||
|
|
|
According to my experience, in most job interviews the questions do not look for way too elaborate answers, and most of the times are just tricky questions, so if they asked specifically for polymorphism without extending a class, then I would say: Yes, you can have dynamic polymorphism by implementing an interface rather than extending a class then if they would ask for more options then it would be ok to bring up proxies, patterns or something else. Hope it helps! |
|||||||||||||
|
|
The simple solution is to write a class that implements an interface rather than extending a base class. Another solution is to create a dynamic proxy ... which is essentially a clever way of implementing an interface without explicitly writing the class. See the And yes, these are (or can be) examples of the decorator pattern, though the key thing here is the implementation techniques rather than the design pattern. |
||||
|
|
extendsandimplementsare both forms of inheritance in the broad sense. – Stephen C Sep 13 '12 at 0:14