This question already has an answer here:
- Type List vs type ArrayList in Java 7 answers
I'm just wondering what the fundamental differences between the two objects are - is one more efficient? Has more methods?
Thanks.
|
This question already has an answer here:
I'm just wondering what the fundamental differences between the two objects are - is one more efficient? Has more methods? Thanks. |
|||||||
|
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.
|
List is in interface while ArrayList is a class. E.g, you can't use this setup:
However, this works:
Also... You can do as duffymo says below, which is more or less the same as implementing the |
|||||
|
|
List is an interface; ArrayList is a class that implements the List interface. Interfaces define the method signatures that are required, but say nothing about how they are implemented. Classes that implement an interface promise to provide public implementations of methods with the identical signatures declared by the interface. |
|||
|
|
|
Consider a line like the following:
If you're new to object-oriented architectures, you might have expected instead to see something like Well, you certainly can do that. However, But The thing is, while you do need to specify which you want when you create the object, you generally only need to communicate no more than the fact that it is a |
|||
|
|
|
A That is, |
|||
|
|
|
According to the java docs, List is just an interface, and ArrayList is one of the classes that implement it. However, I think what you may be asking for is the difference between a LinkedList and an ArrayList. To quote the java docs on the ArrayList page,
In other words, the performance difference will probably be negligible, but you may see some advantage from using an ArrayList (as opposed to a LinkedList). In case you're interested, ArrayList is implemented with an array that is resized from time to time (most likely whenever your collection doubles in size), which is quite different from the implementation of a LinkedList (see wikipedia for details). |
|||
|
|
|
How to use List and In simplicity, Polymorphism is many forms while Inheritance is reuse. There can be many kinds of concrete and ready to us List that is available to you, such as ArrayList, |
|||
|
|