Java Collection Tutorial - Java LinkedList.get(int index)








Syntax

LinkedList.get(int index) has the following syntax.

public E get(int index)

Example

In the following code shows how to use LinkedList.get(int index) method.

//www . ja  va  2 s. c  o  m
import java.util.LinkedList;

public class Main {

   public static void main(String[] args) {
      // create a LinkedList
      LinkedList<String> list = new LinkedList<String>();

      // add some elements
      list.add("Hello");
      list.add("from java2s.com");
      list.add("10");

      // print the list
      System.out.println("LinkedList:" + list);

      // print element at index 3
      System.out.println("Element at index 3 :" + list.get(3));
   }
}

The code above generates the following result.