I stumbled upon a function looking like this:
public void function(Class<?> clazz) {...}
What are the pros/cons of changing the method to:
public <T> void function(Class<T> clazz) {...}
edit: what are the compile time / runtime diff.
|
2
|
|
|
|
|
|
todd.run is totally right on, but that's only half the answer. There are also use cases for choosing
and
The first method will actually not compile UNLESS you add an appropriate type parameter to the enclosing class, whereas the second method WILL compile regardless of whether the enclosing class has a type parameter. If you do not use Check out this stack overflow link for information about your second question: Java generics - type erasure - when and what happens. While I don't know the answer to your question about the compile time difference between |
||||
|
|
|
Basically, they are equivalent. You can use the first syntax where you don't need to declare anything of type T. UPDATE: oh, and T can be used to bind types together: if |
||||||
|
|
|
Using "?" is the same as "any", whereas "T" means "a specific type". So, compare these interfaces:
Now, we can create classes:
Hope that helps! |
||||
|
|
|
A good resource might be this: http://sites.google.com/site/io/effective-java-reloaded The interesting part related to your question starts around the 5th minute. Just in addiction to what previous users said. Hope that helps :] |
||
|
|