Java LinkedList.remove(Object o)

Syntax

LinkedList.remove(Object o) has the following syntax.

public boolean remove(Object o)

Example

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


import java.util.LinkedList;
/*from  w ww .jav  a  2s  . c om*/
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("tutorial from java2s.com");
      list.add("10");

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

      // remove "10"
      System.out.println("10 is in the list:" + list.remove("10"));

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

The code above generates the following result.