Método ArrayList sureCapacity() en Java con ejemplos

El método sureCapacity() de la clase java.util.ArrayList aumenta la capacidad de esta instancia de ArrayList, si es necesario, para garantizar que pueda contener al menos la cantidad de elementos especificados por el argumento de capacidad mínima.

Sintaxis:

public void ensureCapacity(int minCapacity)

Parámetros: Este método toma como parámetro la capacidad mínima deseada .

A continuación se muestran los ejemplos para ilustrar el método sureCapacity() .

Ejemplo 1:

// Java program to demonstrate
// ensureCapacity() method for Integer value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // Creating object of ArrayList<Integer>
            ArrayList<Integer>
                arrlist = new ArrayList<Integer>();
  
            // adding element to arrlist
            arrlist.add(10);
            arrlist.add(20);
            arrlist.add(30);
            arrlist.add(40);
  
            // Print the ArrayList
            System.out.println("ArrayList: "
                               + arrlist);
  
            // ensure that the ArrayList
            // can hold upto 5000 elements
            // using ensureCapacity() method
            arrlist.ensureCapacity(5000);
  
            // Print
            System.out.println("ArrayList can now"
                               + " surely store upto"
                               + " 5000 elements.");
        }
  
        catch (NullPointerException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

ArrayList: [10, 20, 30, 40]
ArrayList can now surely store upto 5000 elements.

Ejemplo 2:

// Java program to demonstrate
// ensureCapacity() method for String value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
  
        try {
  
            // Creating object of ArrayList<Integer>
            ArrayList<String>
                arrlist = new ArrayList<String>();
  
            // adding element to arrlist
            arrlist.add("A");
            arrlist.add("B");
            arrlist.add("C");
            arrlist.add("D");
  
            // Print the ArrayList
            System.out.println("ArrayList: "
                               + arrlist);
  
            // ensure that the ArrayList
            // can hold upto 400 elements
            // using ensureCapacity() method
            arrlist.ensureCapacity(400);
  
            // Print
            System.out.println("ArrayList can now"
                               + " surely store upto"
                               + " 400 elements.");
        }
  
        catch (NullPointerException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

ArrayList: [A, B, C, D]
ArrayList can now surely store upto 400 elements.

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *