Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了以下代码,想知道这是否是一种好习惯:
LinkedList<String> ll = new LinkedList();
我会写
List<String> l = new LinkedList<String> ();
所以这里有两个问题:
List
ArrayList
LinkedList