The Java.util.LinkedList.clear() method is used to remove all the elements from a linked list. Using the clear() method only clears all the element from the list and not deletes the list. In other words we can say that the clear() method is used to only empty an existing LinkedList.
Syntax:
void clear()
Parameters: This function does not accept any parameter.
Return Value: This method does not return any value.
Below program illustrate the Java.util.LinkedList.clear() method:
import java.io.*;
import java.util.LinkedList;
public class LinkedListDemo {
public static void main(String args[])
{
LinkedList<String> list = new LinkedList<String>();
list.add( "Geeks" );
list.add( "for" );
list.add( "Geeks" );
list.add( "10" );
list.add( "20" );
System.out.println( "Original LinkedList:" + list);
list.clear();
System.out.println( "List after clearing all elements: " + list);
list.add( "Geeks" );
list.add( "for" );
list.add( "Geeks" );
System.out.println( "After adding elements to empty list:" + list);
}
}
|
Output:
Original LinkedList:[Geeks, for, Geeks, 10, 20]
List after clearing all elements: []
After adding elements to empty list:[Geeks, for, Geeks]