El método Java.util.Stack.size() en Java se usa para obtener el tamaño de la pila o la cantidad de elementos presentes en la pila.
Sintaxis:
Stack.size()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve el tamaño o la cantidad de elementos presentes en la pila.
Los siguientes programas ilustran el método Java.util.Stack.size():
Programa 1: Pila con elementos de string.
// Java code to illustrate size() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<String> stack = new Stack<String>(); // Use add() method to add elements into the Stack stack.add("Welcome"); stack.add("To"); stack.add("Geeks"); stack.add("4"); stack.add("Geeks"); // Displaying the Stack System.out.println("Stack: " + stack); // Displaying the size of Stack System.out.println("The size is: " + stack.size()); } }
Producción:
Stack: [Welcome, To, Geeks, 4, Geeks] The size is: 5
Programa 2: Pila con elementos enteros.
// Java code to illustrate size() import java.util.*; public class StackDemo { public static void main(String args[]) { // Creating an empty Stack Stack<Integer> stack = new Stack<Integer>(); // Use add() method to add elements into the Stack stack.add(10); stack.add(15); stack.add(30); stack.add(20); stack.add(5); // Displaying the Stack System.out.println("Stack: " + stack); // Displaying the size of Stack System.out.println("The size is: " + stack.size()); } }
Producción:
Stack: [10, 15, 30, 20, 5] The size is: 5