Java中的HashSet clear()方法
Java.util.HashSet.clear() 方法用于从 HashSet 中删除所有元素。使用 clear() 方法只会清除集合中的所有元素,而不是删除集合。换句话说,我们可以说 clear() 方法仅用于清空现有的 HashSet。
句法:
Hash_Set.clear()
参数:该方法不带任何参数
返回值:该函数不返回任何值。
下面的程序说明了Java.util.HashSet.clear() 方法:
// Java code to illustrate clear()
import java.io.*;
import java.util.HashSet;
public class HashSetDemo{
public static void main(String args[])
{
// Creating an empty HashSet
HashSet set = new HashSet();
// Use add() method to add elements into the Set
set.add("Welcome");
set.add("To");
set.add("Geeks");
set.add("4");
set.add("Geeks");
// Displaying the HashSet
System.out.println("HashSet: " + set);
// Clearing the HashSet using clear() method
set.clear();
// Displaying the final Set after clearing;
System.out.println("The final set: " + set);
}
}
输出:
HashSet: [4, Geeks, Welcome, To]
The final set: []