Why is Java's Class<T> generic?
|
|
Er, so you can use generic typed methods -
|
||
|
|
|
|
It's a hack, designed as a workaround for the flawed design of Java generics, a language feature that was designed that way (using type erasure) for the sake of backward compatibility. An example of it's use: the The implementation of Using a variant of one of Sun's examples:
Why does Unless we pass it as a parameter that is. Which we do. The type parameter If you look at the signature of the static method
Substituting
Now there is only one instance of This means that the |
||
|
|
|
|
There's a short mention of this in the Generics section of the 1.5 version of the language guide:
|
||
|
|
|
|
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:
|
||
|
|
|
Here is a reasonably good summary of the advantages: http://www.j2ee.me/docs/books/tutorial/extra/generics/literals.html |
||
|
|
