El método add(Object) de Stack Class agrega el elemento especificado al final de esta pila.
Sintaxis:
boolean add(Object element)
Parámetros: esta función acepta un solo elemento de parámetro como se muestra en la sintaxis anterior. El elemento especificado por este parámetro se agrega al final de la pila.
Valor devuelto: este método devuelve True después de una ejecución exitosa, de lo contrario, False .
El siguiente programa ilustra el funcionamiento del método java.util.Stack.add(Object element):
Ejemplo 1:
// Java code to illustrate boolean add(Object element) 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 in the Stack stack.add("Geeks"); stack.add("for"); stack.add("Geeks"); stack.add("10"); stack.add("20"); // Output the present Stack System.out.println("The Stack is: " + stack); // Adding new elements to the end stack.add("Last"); stack.add("Element"); // Printing the new Stack System.out.println("The new Stack is: " + stack); } }
Producción:
The Stack is: [Geeks, for, Geeks, 10, 20] The new Stack is: [Geeks, for, Geeks, 10, 20, Last, Element]
Ejemplo 2:
// Java code to illustrate // boolean add(Object element) 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 in the Stack stack.add(10); stack.add(20); stack.add(30); stack.add(40); stack.add(50); // Output the present Stack System.out.println("The Stack is: " + stack); // Adding new elements to the end stack.add(100); stack.add(200); // Printing the new Stack System.out.println("The new Stack is: " + stack); } }
Producción:
The Stack is: [10, 20, 30, 40, 50] The new Stack is: [10, 20, 30, 40, 50, 100, 200]