ArrayList (Dynamic Array) in JAVA
ArrayList(dynamic array) in JAVA
In this tutorial you will learn 1) What is an ArrayList? 2) Why we use ArrayList? 3) How we use ArrayList? What is an ArrayList? ArrayList is a data structure. The ArrayList is java class that is extended from AbstractList class. It is actually an array but the property that makes it different from the ordinary array is that its size can be changed dynamically. The ordinary array’s size in unchangeable once defined.- Read more about ArrayList (Dynamic Array) in JAVA
- Log in or register to post comments
- 101 views