Search Interview Questions | Click here and help us by providing the answer. Click Correct / Improve and please let us know. |
|
|||
|
| ||||
| Core Java - Interview Questions and Answers for 'Type argument' - 1 question(s) found - Order By Newest | ||||
| ||||
| Ans. No. It will result in a type mismatch error. Collection<Collection> collection = new LinkedList<Collection>(); is a valid initialization as collection being reference of "Collection" class can hold object of derived Class "LinkedList" due to runtime Polymorphism. Runtime polymorphism is not applicable to type arguments. | ||||