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