What is the difference between
ArrayList myList = new ArrayList();
and
List myList = new ArrayList();
And why(if it is) is one more beneficial than the other?
Im really confused because it seems to me that they both do exactly the same thing
Thanks in advance~