What is the difference between a Class and a Class> declaration.
Class
Class>
Class a;
Class> b;
Class> shows that you're intentionally writing Java 5-level code that doesn't know or care what class you are dealing with. Leaving out the makes it look like old code or code written by someone who hasn't learned generics yet.
>