Java 1.5 came with
Generics and all collection interfaces and implementations use it heavily.
Generics allow us to provide the type of Object that a collection can contain,
so if you try to add any element of other type it throws compile time error.
This avoids ClassCastException at Runtime because you will get the error at compilation. Also Generics make code clean since we don’t need to use casting and instanceof operator.
This avoids ClassCastException at Runtime because you will get the error at compilation. Also Generics make code clean since we don’t need to use casting and instanceof operator.
No comments:
Post a Comment