Java Stack ensureCapacity()方法及示例

Java Stack ensureCapacity()方法及示例

Java.util.Stack 类的 ensureCapacity() 方法在必要时增加这个Stack实例的容量,以确保它至少可以容纳由最小容量参数指定的元素数量。

语法

public void ensureCapacity(int minCapacity)

参数: 该方法将 所需的最小容量 作为参数。

下面是一些例子来说明 ensureCapacity() 方法。

例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);
        }
    }
}

输出:

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

例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);
        }
    }
}

输出:

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程