El método element() de la clase java.util.LinkedList recupera, pero no elimina, el encabezado (primer elemento) de esta lista.
Sintaxis:
public E element()
Valor devuelto: este método devuelve el encabezado de esta lista.
A continuación se muestran los ejemplos para ilustrar el método element()
Ejemplo 1:
// Java program to demonstrate // element() method // for Integer value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of LinkedList<Integer> LinkedList<Integer> list = new LinkedList<Integer>(); // add some elements to list list.add(10); list.add(20); list.add(30); // print the linked list System.out.println("LinkedList : " + list); // getting the head of list // using element() method int value = list.element(); // print the head of list System.out.println("Head of list : " + value); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
LinkedList : [10, 20, 30] Head of list : 10
Ejemplo 2:
// Java program to demonstrate // element() method // for String value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of LinkedList<String> LinkedList<String> list = new LinkedList<String>(); // add some elements to list list.add("A"); list.add("B"); list.add("C"); // print the linked list System.out.println("LinkedList : " + list); // getting the head of list // using element() method String value = list.element(); // print the head of list System.out.println("Head of list : " + value); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
LinkedList : [A, B, C] Head of list : A
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA