Generics with collection
-
JAVA Collection FrameworkStaticPL/JAVA 2019. 8. 18. 20:18
1. Collection 3. List: interface List is a fundamental and widely-used collection type in the Java Collections Framework. Basically, a list collection stores elements by insertion order (either at the end or at a specific position in the list). A list maintains indices of its elements so it allows adding, retrieving, modifying, removing elements by an integer index (zero-based index; the first e..