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> ();
したがって、ここで 2 つの質問があります。
List
ArrayList
LinkedList