What is the difference between
List list = new ArrayList<Integer>();
And
List<Integer> list = new ArrayList<Integer>();
|
By doing:
you are not telling the compiler what kind of List it is. This would allow someone to compile this code:
which is clearly wrong and would cause you exception, because you can add anything in the list, so the compiler is not sure if list.get(0) is really an Integer. Now with this way you are telling the compiler that this list will only accept and hold integers or Integer subclasses (in case it could be subclassed).
so this wouldn't compile:
|
||||
|
|
|
In the first case, when you do |
|||||
|
|
The difference is that you don't get any of the benefits of type safety offered by generics when you're using the first declaration -- it's pretty pointless. |
|||
|
|
|
Expanding on @Ernest's answer (which is accurate), here are some differences of usage:
|
|||
|
|
List list ...? – Prince John Wesley Aug 5 '11 at 4:10