El método sureCapacity() de la clase Java.util.Stack aumenta la capacidad de esta instancia de Stack, 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 Stack<Integer> Stack<Integer> stack = new Stack<Integer>(); // adding element to stack stack.add(10); stack.add(20); stack.add(30); stack.add(40); // Print the Stack System.out.println("Stack: " + stack); // ensure that the Stack // can hold upto 5000 elements // using ensureCapacity() method stack.ensureCapacity(5000); // Print System.out.println("Stack can now" + " surely store upto" + " 5000 elements."); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
Stack: [10, 20, 30, 40] Stack 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 Stack<Integer> Stack<String> stack = new Stack<String>(); // adding element to stack stack.add("A"); stack.add("B"); stack.add("C"); stack.add("D"); // Print the Stack System.out.println("Stack: " + stack); // ensure that the Stack // can hold upto 400 elements // using ensureCapacity() method stack.ensureCapacity(400); // Print System.out.println("Stack can now" + " surely store upto" + " 400 elements."); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
Stack: [A, B, C, D] Stack can now surely store upto 400 elements.