LinkedList.remove(int index) has the following syntax.
public E remove(int index)
In the following code shows how to use LinkedList.remove(int index) method.
import java.util.LinkedList; /*from ww w . j ava2 s .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("Chocolate"); list.add("10"); // print the list System.out.println("LinkedList:" + list); // remove the element at index 2 System.out.println("Element to be removed:" + list.remove(2)); // print the list System.out.println("LinkedList:" + list); } }
The code above generates the following result.