El método java.util.concurrent.ConcurrentLinkedDeque.offerLast() es un método incorporado en Java que inserta el elemento especificado, pasado como parámetro, al final de la deque.
Sintaxis:
Conn_Linked_Deque.offerLast(Object elem)
Parámetros: el método acepta un parámetro elem que especifica el elemento que se insertará al final de la deque.
Valor devuelto: la función devuelve True si el elemento se agrega con éxito a la deque y devuelve False en caso contrario.
Excepción: la función lanza una NullPointerException si el parámetro pasado es NULL .
Los siguientes programas ilustran el método ConcurrentLinkedDeque.offerLast() :
Programa 1 :
/* Java Program to Demonstrate offerLast() method of ConcurrentLinkedDeque */ import java.util.concurrent.*; class GFG { public static void main(String[] args) { // Creating an empty Deque ConcurrentLinkedDeque<String> cld = new ConcurrentLinkedDeque<String>(); // Add elements into the Deque cld.add("Welcome"); cld.add("To"); cld.add("Geeks"); cld.add("4"); cld.add("Geeks"); // Displaying the Deque System.out.println("Elements in Deque: " + cld); // Displaying the Last element System.out.println("The Last element is: " + cld.getLast()); /* Insert an element at the tail of the deque */ if (cld.offerLast("GFG")) { // Displaying the Last element System.out.println("The Inserted element is: " + cld.getLast()); } // Displaying the Deque System.out.println("Elements in Deque: " + cld); // Displaying the Last element System.out.println("The Last element is: " + cld.getLast()); } }
Elements in Deque: [Welcome, To, Geeks, 4, Geeks] The Last element is: Geeks The Inserted element is: GFG Elements in Deque: [Welcome, To, Geeks, 4, Geeks, GFG] The Last element is: GFG
Programa 2 :
/* Java Program to Demonstrate offerLast() method of ConcurrentLinkedDeque */ import java.util.concurrent.*; class GFG { public static void main(String[] args) { // Creating an empty Deque ConcurrentLinkedDeque<Integer> cld = new ConcurrentLinkedDeque<Integer>(); // Add elements into the Deque cld.add(12); cld.add(43); cld.add(29); cld.add(16); cld.add(70); // Displaying the Deque System.out.println("Elements in Deque: " + cld); // Displaying the Last element System.out.println("The Last element is: " + cld.getLast()); try { cld.offerLast(null); } catch (Exception e) { System.out.println(e); } /* Insert an element at the tail of the deque */ if (cld.offerLast(24)) { // Displaying the Last element System.out.println("The Inserted element is: " + cld.getLast()); } // Displaying the Deque System.out.println("Elements in Deque: " + cld); // Displaying the Last element System.out.println("The Last element is: " + cld.getLast()); } }
Elements in Deque: [12, 43, 29, 16, 70] The Last element is: 70 java.lang.NullPointerException The Inserted element is: 24 Elements in Deque: [12, 43, 29, 16, 70, 24] The Last element is: 24
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentLinkedDeque.html#offerLast()
Publicación traducida automáticamente
Artículo escrito por RICHIK BHATTACHARJEE y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA