What is list interface in Java?
Answers
Answered by
0
List is a child interface of Collection. It is an ordered collection of objects.
Answered by
2
- The List interface provides a way to store the ordered collection. It is a child interface of Collection. It is an ordered collection of objects in which duplicate values can be stored. Since List preserves the insertion order, it allows positional access and insertion of elements
Similar questions