- Java.util - Home
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util - Interfaces
- Java.util - Exceptions
- Java.util - Enumerations
- Java.util Useful Resources
- Java.util - Useful Resources
- Java.util - Discussion
Java LinkedList getLast() Method
Description
The Java LinkedList getLast() method retrieves, but does not remove, the last element of this linkedList. The LinkedList object remains untouched.
Declaration
Following is the declaration for java.util.LinkedList.getLast() method
public E getLast()
Parameters
NA
Return Value
This method returns the tail of this linkedList.
Exception
NoSuchElementException − if this linkedList is empty.
Getting Last Element of LinkedList of Integers Example
The following example shows the usage of Java LinkedList getLast() method with Integers. We're creating an LinkedList of Integers, adding some elements, print it and then use getLast() method to get the last element. LinkedList remains untouched.
package com.tutorialspoint;
import java.util.LinkedList;
public class LinkedListDemo {
public static void main(String[] args) {
// create an empty linkedList
LinkedList<Integer> linkedList = new LinkedList<>();
// use add() method to add elements in the linkedList
linkedList.add(25);
linkedList.add(30);
linkedList.add(20);
linkedList.add(18);
// let us print all the elements available in linkedList
System.out.println("LinkedList = " + linkedList);
// it will retrieve last element
System.out.println("Retrieved Element is = " + linkedList.getLast());
// let us print all the elements available in linkedList again
System.out.println("LinkedList = " + linkedList);
}
}
Output
Let us compile and run the above program, this will produce the following result −
LinkedList = [25, 30, 20, 18] Retrieved Element is = 18 LinkedList = [25, 30, 20, 18]
Getting Last Element of LinkedList of Strings Example
The following example shows the usage of Java LinkedList getLast() method with Strings. We're creating an LinkedList of Strings, adding some elements, print it and then use getLast() method to get the last element. LinkedList remains untouched.
package com.tutorialspoint;
import java.util.LinkedList;
public class LinkedListDemo {
public static void main(String[] args) {
// create an empty linkedList
LinkedList<String> linkedList = new LinkedList<>();
// use add() method to add elements in the linkedList
linkedList.add("A");
linkedList.add("B");
linkedList.add("C");
linkedList.add("D");
// let us print all the elements available in linkedList
System.out.println("LinkedList = " + linkedList);
// it will retrieve last element
System.out.println("Retrieved Element is = " + linkedList.getLast());
// let us print all the elements available in linkedList again
System.out.println("LinkedList = " + linkedList);
}
}
Output
Let us compile and run the above program, this will produce the following result −
LinkedList = [A, B, C, D] Retrieved Element is = D LinkedList = [A, B, C, D]
Getting Last Element of LinkedList of Objects Example
The following example shows the usage of Java LinkedList getLast() method with Student objects. We're creating an LinkedList of Student objects, adding some students, print it and then use getLast() method to get the last student. LinkedList remains untouched.
package com.tutorialspoint;
import java.util.LinkedList;
public class LinkedListDemo {
public static void main(String[] args) {
// create an empty linkedList
LinkedList<Student> linkedList = new LinkedList<>();
// use add() method to add elements in the linkedList
linkedList.add(new Student(1, "Julie"));
linkedList.add(new Student(2, "Robert"));
linkedList.add(new Student(3, "Adam"));
// let us print all the elements available in linkedList
System.out.println("LinkedList = " + linkedList);
// it will retrieve last element
System.out.println("Retrieved Element is = " + linkedList.getLast());
// let us print all the elements available in linkedList again
System.out.println("LinkedList = " + linkedList);
}
}
class Student {
int rollNo;
String name;
Student(int rollNo, String name){
this.rollNo = rollNo;
this.name = name;
}
@Override
public String toString() {
return "[ " + this.rollNo + ", " + this.name + " ]";
}
@Override
public boolean equals(Object obj) {
Student s = (Student)obj;
return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
}
}
Output
Let us compile and run the above program, this will produce the following result −
LinkedList = [[ 1, Julie ], [ 2, Robert ], [ 3, Adam ]] Retrieved Element is = [ 3, Adam ] LinkedList = [[ 1, Julie ], [ 2, Robert ], [ 3, Adam ]]