What is the difference between a Class and a Class<?> declaration.
Class a;Class<?> b;
|
|
|
It's the same as with all generic and raw types:
In this special case there's no much practical difference between But: Since Java 1.5 you should use the generic form wherever possible. In the end it makes not much of a difference to the compiler but it makes a huge difference in making the intentions of your code more understandable and maintainable. |
|||||||||
|
|
Class javadoc:
Use of |
|||
|
|
|
Class |
|||
|
|