📜  用示例列出Java中的 clear() 方法

📅  最后修改于: 2022-05-13 01:55:43.363000             🧑  作者: Mango

用示例列出Java中的 clear() 方法

Java中List 接口clear()方法用于从 List 容器中删除所有元素。此方法不会删除 List 容器,而是从 List 中删除所有元素。

句法:

public void clear()

参数:此方法接受不接受任何参数。

返回值:函数的返回类型为void,不返回任何内容。

异常:如果此列表不支持 clear() 操作,此方法将引发UnsupportedOperationException

下面的程序说明了 List.clear() 方法:

方案一:

// 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 list = new ArrayList(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);
    }
}
输出:
[]

方案二:

// 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 list = new ArrayList(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);
    }
}
输出:
[]

参考: https: Java/util/List.html#clear()