El método addElement(E) de Stack Class se usa para agregar el elemento pasado como parámetro a esta función al final de la pila.
Sintaxis:
boolean addElement(E obj) Here, E is the type of elements maintained by this container.
Parámetros: esta función acepta un parámetro E obj que es el objeto que se agregará al final de la pila.
Valor devuelto: el método devuelve True si se realiza al menos una acción de agregar, de lo contrario, False .
El siguiente programa ilustra el método Java.util.Stack.addElement():
Ejemplo 1:
// Java code to illustrate boolean addElement() import java.util.*; import java.util.ArrayList; public class GFG { 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"); // Displaying the Stack System.out.println("The Stack is: " + stack); // Appending "GeeksForGeeks" to the Stack stack.addElement("GeeksForGeeks"); // Clearing the Stack using clear() and displaying 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, GeeksForGeeks]
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); // Displaying the Stack System.out.println("The Stack is: " + stack); // Appending 100 to the Stack stack.addElement(100); // Clearing the Stack using clear() and displaying 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]