Java LinkedList.remove()

Syntax

LinkedList.remove() has the following syntax.

public E remove()

Example

In the following code shows how to use LinkedList.remove() method.


import java.util.LinkedList;
//  w w  w .  jav  a  2s.c  o  m
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);

      // remove the head of the list
      list.remove();

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

The code above generates the following result.