Java中的 TreeSet isEmpty() 方法
Java.util.TreeSet.isEmpty() 方法用于检查和验证 TreeSet 是否为空。如果 TreeSet 为空,则返回 True,否则返回 False。
句法:
Tree_Set.isEmpty()
参数:该方法不带任何参数
返回值:如果集合为空,则该函数返回 True,否则返回 False。
下面的程序说明了Java.util.TreeSet.isEmpty() 方法的使用:
// Java code to illustrate isEmpty() method
import java.util.*;
import java.util.TreeSet;
public class TreeSetDemo {
public static void main(String args[])
{
// Creating an empty HashSet
TreeSet tree = new TreeSet();
// Use add() method to add elements into the Set
tree.add("Welcome");
tree.add("To");
tree.add("Geeks");
tree.add("4");
tree.add("Geeks");
tree.add("TreeSet");
// Displaying the TreeSet
System.out.println("TreeSet: " + tree);
// Check for the empty set
System.out.println("Is the set empty? " + tree.isEmpty());
// Clearing the set using clear() method
tree.clear();
// Again Checking for the empty set
System.out.println("Is the set empty? " + tree.isEmpty());
}
}
输出:
TreeSet: [4, Geeks, To, TreeSet, Welcome]
Is the set empty? false
Is the set empty? true