For minimizing the storage used by an ArrayList
to the number of it’s elements we can use the ArrayList.trimToSize()
method call. In the code below we create an instance of ArrayList
with the initial capacity set to 100. Later we only add five data into the list. To make the capacity of the ArrayList
minimized we call the trimToSize()
method.
package org.kodejava.example.util;
import java.util.ArrayList;
public class ListTrimToSize {
public static void main(String[] args) {
// Create an ArrayList with the initial capacity of 100.
ArrayList<String> list = new ArrayList<>(100);
list.add("A");
list.add("B");
list.add("C");
list.add("D");
list.add("E");
list.add("F");
System.out.println("Size: " + list.size());
// Trim the capacity of the ArrayList to the size
// of the ArrayList. We can do this operation to reduce
// the memory use to store data by the ArrayList.
list.trimToSize();
}
}
Latest posts by Wayan (see all)
- How do I install Calibri font in Ubuntu? - January 24, 2021
- How do I create a generic class in Java? - January 1, 2021
- How do I convert java.util.TimeZone to java.time.ZoneId? - April 25, 2020