This question already has an answer here:
- Type List vs type ArrayList in Java 7 answers
- What is a List vs. an ArrayList? [duplicate] 6 answers
I've been using ArrayList recently in my android project at the office and I'm a bit confused between List and ArrayList, what is the difference of the two and what should I use?
Also I saw some implementations of it like.
List<SomeObject> myList = new ArrayList<SomeObject>();
ArrayList<SomeObject> myList = new ArrayList<SomeObject>();
What is the difference of those two instances?
