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

getLast()

Example

Retrieve the final item from 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 getLast() to get the last item in the list System.out.println(cars.getLast()); 

} 

}

Definition and Usage

The getLast() method retrieves the last item in a list.

Tip: Employ the getFirst() method to obtain the first item in a list.

Syntax

public T getLast()

T signifies the data type of elements in the list.

Parameters

None.

Technical Details

Returns:

The final element in the list

Throws:

NoSuchElementException occurs if the list is empty.