Java / Collections
What is the difference between Array and ArrayList in Java?
Array is static in size while ArrayList is dynamic in size.
Array can contain primitive data types or Objects while ArrayList can only hold Objects and can not contain primitive data types.
More Related questions...