The clear() method of AbstractSequentialList in Java is used to remove all the elements from a list. The list will be empty after this call returns.
Syntax:
public void clear()
Parameters: This function has no parameters.
Returns: The method does not return any value. It removes all the elements in the list and makes it empty.
Below examples illustrates the AbstractSequentialList.clear() method:
Example 1:
import java.util.*;
public class GFG {
public static void main(String[] args)
{
AbstractSequentialList<Integer> arr
= new LinkedList<Integer>();
arr.add( 1 );
arr.add( 2 );
arr.add( 3 );
arr.add( 4 );
System.out.println( "The list initially: "
+ arr);
arr.clear();
System.out.println( "The list after "
+ "using clear() method: "
+ arr);
}
}
|
Output:
The list initially: [1, 2, 3, 4]
The list after using clear() method: []
Example 2:
import java.util.*;
public class GFG {
public static void main(String[] args)
{
AbstractSequentialList<String> arr
= new LinkedList<String>();
arr.add( "Geeks" );
arr.add( "For" );
arr.add( "ForGeeks" );
arr.add( "GeeksForGeeks" );
System.out.println( "The list initially: "
+ arr);
arr.clear();
System.out.println( "The list after "
+ "using clear() method: "
+ arr);
}
}
|
Output:
The list initially: [Geeks, For, ForGeeks, GeeksForGeeks]
The list after using clear() method: []