Why is Java's Class<T> generic?
|
So that generic typed methods can be used -
|
|||||||||
|
|
Here is a reasonably good summary of the advantages: http://download.oracle.com/javase/tutorial/extra/generics/literals.html |
||||
|
|
|
There's a short mention of this in the Generics section of the 1.5 version of the language guide:
|
|||
|
|
|
The real reason is given by Neil Gafter:
|
|||
|
|
|
It permits you to create classes that handle objects from different. Think about the hell it would be if you have to write a list for each class present in your project. Instead of writing things like:
and
You can create:
and use it like:
|
|||||
|