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

get()

Example

Display the value of an item in a 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");

System.out.println(cars.get(0));

}

}

Definition and Usage

The get() method retrieves the item located at a specified position within the list.

 

Syntax

public T get(int index)

T denotes the data type of elements in the list.

Parameter Values

Parameter

Description

index

Mandatory. Indicates the position of the item in the list.

Technical Details

Returns:

The item located at the designated position.

Throws:

IndexOutOfBoundsException occurs if the index is negative, equal to the size of the list, or exceeds the list’s size.