Polymorphisim in Java stands for many forms what can be achieved by overriding sub-class method. Regarding generics which allows to pass in generic values, such as ArrayList<Object>. Is that part of polymorphism concept?
Cheers
|
|
|||
|
|
Generics and Polymorphism are two different things. Generics are used primarily to specify which type is expected. You can use wildcards to define a range of types. E.g. Polymorphism is the concept that an object can have many types. So an object can be an instance of List and an instance of For example, imagine three classes
If you have an instance of Obviously the two fit together quite nicely as if you define an |
|||
|
|
|
Polymorhphism cannot be applied to generic types.
Although
|
|||
|
|
Polymorphism in java can be achieved by two ways in java.
Regarding your question Yes it can be done by overriding method in subclass. You can genrics objects as well in arguments in both overloading as well as overriding. |
|||
|
|
|
Using Object for polymorphism is considered a bad pattern in Java. It does not give you the assurances and type safety that an interface would give you.
The error demonstrated above cannot be caught at compile time and will only be thrown when the error occurs at runtime. We could have completely avoided this error if we had created an Animal interface.
This shows a better way of trying to a achieve polymorphism, we have created a safer way when can be checked at compile time not at runtime. Try to avoid using Object wherever possible, there is probably a better Interface you can design or use for you needs. |
|||
|
|

