Definition of ArrayList
What is ArrayList in software programming language?
Answers
Answered by
1
Each ArrayList instance has a capacity. The capacity is the size of the array used to store the elements in the list. It is always at least as large as the list size. As elements are added to an ArrayList, its capacity grows automatically.
Similar questions