Open In App
Related Articles

List clear() method in Java with Examples

Improve Article
Improve
Save Article
Save
Like Article
Like

The clear() method of List interface in Java is used to remove all of the elements from the List container. This method does not deleted the List container, instead it just removes all of the elements from the List. 

Syntax:

public void clear()

Parameter: This method accepts does not accepts any parameter.

Return Value: The return type of the function is void and it does not returns anything. 

Exceptions: This method throws an UnsupportedOperationException if the clear() operation is not supported by this list. 

Below programs illustrate the List.clear() method: 

Program 1: 

Java




// Java code to illustrate clear() method
import java.io.*;
import java.util.*;
 
public class ListDemo {
    public static void main(String[] args)
    {
 
        // create an empty list with an initial capacity
        List<String> list = new ArrayList<String>(5);
 
        // use add() method to initially
        // add elements in the list
        list.add("Geeks");
        list.add("For");
        list.add("Geeks");
 
        // Remove all elements from the List
        list.clear();
 
        // print the List
        System.out.println(list);
    }
}


Output:

[]

Program 2: 

Java




// Java code to illustrate clear() method
import java.io.*;
import java.util.*;
 
public class ListDemo {
    public static void main(String[] args)
    {
 
        // create an empty list with an initial capacity
        List<Integer> list = new ArrayList<Integer>(5);
 
        // use add() method to initially
        // add elements in the list
        list.add(10);
        list.add(20);
        list.add(30);
 
        // clear the list
        list.clear();
 
        // prints all the elements available in list
        System.out.println(list);
    }
}


Output:

[]

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/List.html#clear()


Feeling lost in the vast world of Backend Development? It's time for a change! Join our Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
  • Comprehensive Course
  • Expert Guidance for Efficient Learning
  • Hands-on Experience with Real-world Projects
  • Proven Track Record with 100,000+ Successful Geeks

Last Updated : 24 May, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials