September 2011
Beginner
650 pages
15h 47m
English
There are a few restrictions that you need to keep in mind when using generics. They involve creating objects of a type parameter, static members, exceptions, and arrays. Each is examined here.
It is not possible to create an instance of a type parameter. For example, consider this class:

Here, it is illegal to attempt to create an instance of T. The reason should be easy to understand: the compiler has no way to know what type of object to create. T is simply a placeholder that is erased.
No static member can use a type parameter declared by the enclosing ...
Read now
Unlock full access