Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

removeLast()

Example

Eliminate the final item in the list.

import java.util.LinkedList;
public class Main {
  public static void main(String[] args) {
    LinkedList<String> cars = new LinkedList<String>();
    cars.add("Volvo");
    cars.add("BMW");
    cars.add("Ford");
    cars.add("Mazda");
 
    // Use removeLast() to remove the last item from the list
    cars.removeLast();
    System.out.println(cars);
  }
}

 

Definition and Usage

The removeLast() method eliminates the final item in a list.

Tip: Employ the removeFirst() method to remove the initial item in a list.

Syntax

public T removeLast()

T refers to the data type of items within the list.

Parameters

None.

Technical Details

Returns: The deleted element (the last item in the list)
Throws: NoSuchElementException – If the list is empty.