w3resource

Java: Trim the capacity of an array list the current list size


Write a Java program for trimming the capacity of an array list.

Pictorial Presentation:

Java Collection, ArrayList Exercises: Trim the capacity of an array list the current list size

Sample Solution:-

Java Code:

import java.util.ArrayList;
import java.util.Collections;
  public class Exercise19 {
  public static void main(String[] args) {
          ArrayList<String> c1= new ArrayList<String>();
          c1.add("Red");
          c1.add("Green");
          c1.add("Black");
          c1.add("White");
          c1.add("Pink");
          System.out.println("Original array list: " + c1);
          System.out.println("Let trim to size the above array: ");
          c1.trimToSize();
          System.out.println(c1);
   }
}

Sample Output:

Original array list: [Red, Green, Black, White, Pink]                  
Let trim to size the above array:                                      
[Red, Green, Black, White, Pink] 

Flowchart:

Flowchart: Trim the capacity of an array list the current list size.

For more Practice: Solve these Related Problems:

  • Write a Java program to trim the capacity of an ArrayList using trimToSize() and then print the internal array size if accessible.
  • Write a Java program to create an ArrayList with a large capacity, add elements, and then trim it to the current size.
  • Write a Java program to compare the performance before and after calling trimToSize() on an ArrayList.
  • Write a Java program to simulate dynamic array behavior by manually adjusting the capacity of an ArrayList.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Test an array list is empty or not.
Next: Increase the size of an array list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.