Java AbstractSet的clear()方法及示例
Java中 AbstractSet 的 clear() 方法是用来移除一个集合中的所有元素。在这个调用返回后,这个集合将是空的。
语法
public void clear()
参数: 该函数没有参数。
返回: 该方法不返回任何值。它删除了集合中的所有元素并使其为空。
下面的例子说明了AbstractSet.clear()方法。
例1 :
// Java code to demonstrate the working of
// clear() method in AbstractSet
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// creating an AbstractSet
AbstractSet<Integer> arr
= new TreeSet<Integer>();
// using add() to initialize values
// [1, 2, 3, 4]
arr.add(1);
arr.add(2);
arr.add(3);
arr.add(4);
// set initially
System.out.println("The set initially: "
+ arr);
// clear function used
arr.clear();
// set after clearing all elements
System.out.println("The set after "
+ "using clear() method: "
+ arr);
}
}
输出。
The set initially: [1, 2, 3, 4]
The set after using clear() method: []
例2 :
// Java code to demonstrate the working of
// clear() method in AbstractSet
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// creating an AbstractSet
AbstractSet<String> arr
= new TreeSet<String>();
// using add() to initialize values
// [Geeks, For, ForGeeks, GeeksForGeeks]
arr.add("Geeks");
arr.add("For");
arr.add("ForGeeks");
arr.add("GeeksForGeeks");
// set initially
System.out.println("The set initially: "
+ arr);
// clear function used
arr.clear();
// set after clearing all elements
System.out.println("The set after "
+ "using clear() method: "
+ arr);
}
}
输出。
The set initially: [For, ForGeeks, Geeks, GeeksForGeeks]
The set after using clear() method: []
极客教程