VOOZH about

URL: https://www.geeksforgeeks.org/java/concurrentlinkeddeque-getlast-method-in-java/

⇱ ConcurrentLinkedDeque getLast() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ConcurrentLinkedDeque getLast() Method in Java

Last Updated : 17 Sep, 2018
The java.util.concurrent.ConcurrentLinkedDeque.getLast() method is an in-built method in Java which returns the last element of the deque container. Syntax:
Conn_Linked_Deque.getLast()
Parameters: The method does not accept any parameter. Return Value: The method returns the last element present in the Deque. Exception: The function throws a NoSuchElementException when the deque is empty. Below programs illustrate the ConcurrentLinkedDeque.getLast() method: Program 1:
Output:
Elements in Deque: [Welcome, To, Geeks, 4, Geeks]
The Last element is: Geeks
Program 2:
Output:
java.util.NoSuchElementException
Elements in Deque: [12, 43, 29, 16, 70]
The Last element is: 70
Reference:https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentLinkedDeque.html#getLast()
Comment