What's the difference between this:
List<String> list = new LinkedList<String>();
and this?
LinkedList<String> list = new LinkedList<String>();
What's the difference between this:
List<String> list = new LinkedList<String>();
and this?
LinkedList<String> list = new LinkedList<String>();