Search Results

0
votes

Are Java generics mainly a way of forcing static type on elements of a collection?

You may want to check out the tutorial in the Java site. It gives a good explanation of in the introdu …
1
vote

Autoboxing: So I can write: Integer i = 0; instead of: Integer i = new Integer(0);

The main advantage would be readability, syntactic sugar basically. Java is already very verbose, Sun is trying all sorts of ways to make the syntax shorter. …