The capacity() method of Stack Class is used to get the capacity of this Stack. That is the number of elements present in this stack container.
Syntax:
public int capacity()
Parameters: This function accepts a parameter E obj which is the object to be added at the end of the Stack.
Return Value: The method returns integer value which is the capacity of the Stack
Below program illustrate the Java.util.Stack.capacity() method:
Example 1:
import java.util.*;
import java.util.ArrayList;
public class GFG {
public static void main(String args[])
{
Stack<String> stack = new Stack<String>();
stack.add( "Geeks" );
stack.add( "for" );
stack.add( "Geeks" );
stack.add( "10" );
stack.add( "20" );
System.out.println( "The Stack is: " + stack);
System.out.println( "Capacity: "
+ stack.capacity());
}
}
|
Output:
The Stack is: [Geeks, for, Geeks, 10, 20]
Capacity: 10
Example 2:
import java.util.*;
public class StackDemo {
public static void main(String args[])
{
Stack<Integer> stack
= new Stack<Integer>();
stack.add( 10 );
stack.add( 20 );
stack.add( 30 );
stack.add( 40 );
stack.add( 50 );
System.out.println( "The Stack is: " + stack);
System.out.println( "Capacity: "
+ stack.capacity());
}
}
|
Output:
The Stack is: [10, 20, 30, 40, 50]
Capacity: 10
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!