Home » Difference between Length of Array and Size of ArrayList in Java

Difference between Length of Array and Size of ArrayList in Java

by Online Tutorials Library

Difference between length of array and size() of ArrayList in Java

ArrayList doesn’t have length() method, the size() method of ArrayList provides the number of objects available in the collection.

Array has length property which provides the length or capacity of the Array. It is the total space allocated during the intialization of the array.

Output:

10 2 

You may also like