What does the method removeLast() do in java?


The removeLast() method of the java.util.LinkedList class removes and returns the last element of this list.

Example:

import java.util.*;

public class LinkedListDemo {
   public static void main(String[] args) {
      LinkedList list = new LinkedList();
      list.add("Hello");
      list.add(2);
      list.add("Chocolate");
      list.add("10");
      System.out.println("LinkedList:" + list);
      System.out.println("Last element:" + list.removeLast());
      System.out.println("LinkedList:" + list);
   }
}

Output:

LinkedList:[Hello, 2, Chocolate, 10]
Last element:10
LinkedList:[Hello, 2, Chocolate]


Updated on: 30-Jul-2019

51 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements