Possible Duplicate:
List versus ArrayList
Difference between
ArrayList al = new ArrayList()
and
List al = new ArrayList() ?
Difference between
and
|
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
None, from a creation perspective. Both create an instance of The difference is that, in you second example, A practical rule of thumb: use the second pattern. If you need some extra goodies from the
|
|||||
|
|
Paraphrasing my answer to this very similar question about There is no difference between the objects. There is a difference in the interface you have to the object. In the first case, the interface is The advantage to using |
|||
|
|
|
Its called programming to interface. Suppose, you need to return this
And this,
Now for the latter method calling code can have the returned list in
No change in calling code, whereas with the former you need to change the return type, that would eventually screw up the calling code as well. |
|||||||
|