How to delete many elements from a linkedList?
Following example demonstrates how to delete many elements of linkedList using Clear() method.
import java.util.*; public class Main { public static void main(String[] args) { LinkedList lList = new LinkedList(); lList.add("1"); lList.add("8"); lList.add("6"); lList.add("4"); lList.add("5"); System.out.println(lList); lList.subList(2, 4).clear(); System.out.println(lList); } }
The above code sample will produce the following result.
[one, two, three, four, five] [one, two, three, Replaced, five]
Advertisement