Método LinkedList pop() en Java

El método java.util.LinkedList.pop() se utiliza para eliminar y devolver el elemento superior de la pila representada por LinkedList. El método simplemente saca un elemento presente en la parte superior de la pila. Este método es similar al método removeFirst en LinkedList.

Sintaxis :

LinkedListObject.pop()

Parámetros: El método no toma ningún parámetro.

Valor devuelto: el método devuelve el primer valor (superior en términos de una pila) de la pila representada por LinkedList.

Excepción: si no hay ningún elemento en la pila representado por LinkedList, el método pop lanzará NoSuchElementException() .

El siguiente programa ilustra el método java.util.LinkedList.pop():
Programa 1:

// Java code to demonstrate pop method in LinkedList
  
import java.util.LinkedList;
  
public class GfG {
    // Main method
    public static void main(String[] args)
    {
  
        // Creating a LinkedList object to represent a stack.
        LinkedList<String> stack = new LinkedList<>();
  
        // Pushing an element in the stack
        stack.push("Geeks");
  
        // Pushing an element in the stack
        stack.push("for");
  
        // Pop an element from stack
        String s = stack.pop();
  
        // Printing the popped element.
        System.out.println(s);
  
        // Pushing an element in the stack
        stack.push("Geeks");
  
        // Printing the complete stack.
        System.out.println(stack);
    }
}
Producción:

for
[Geeks, Geeks]

Programa 2:

// Java code to demonstrate pop method in LinkedList
  
import java.util.LinkedList;
  
public class GfG {
    // Main method
    public static void main(String[] args)
    {
  
        // Creating a LinkedList object to represent a stack.
        LinkedList<Integer> stack = new LinkedList<>();
  
        // Pushing an element in the stack
        stack.push(10);
  
        // Pushing an element in the stack
        stack.push(20);
  
        // Pop an element from stack
        Integer ele = stack.pop();
  
        // Printing the popped element.
        System.out.println(ele);
  
        // Pop an element from stack
        ele = stack.pop();
  
        // Printing the popped element.
        System.out.println(ele);
  
        // Throws NoSuchElementException
        ele = stack.pop();
  
        // Throwsca runtime exception
        System.out.println(ele);
  
        // Printing the complete stack.
        System.out.println(stack);
    }
}

Salida :

20
10

then it will throw :
Exception in thread "main" java.util.NoSuchElementException
    at java.util.LinkedList.removeFirst(LinkedList.java:270)
    at java.util.LinkedList.pop(LinkedList.java:801)
    at GfG.main(GfG.java:35)

Publicación traducida automáticamente

Artículo escrito por ShivamKD y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *