📜  使用示例在Java中设置 isEmpty() 方法

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

使用示例在Java中设置 isEmpty() 方法

Java.util.Set.isEmpty() 方法用于检查 Set 是否为空。如果 Set 为空,则返回 True,否则返回 False。

句法:

boolean isEmpty()

参数:此方法不带任何参数

返回值:如果集合为空,则该方法返回 True,否则返回 False。

下面的程序说明了Java.util.Set.isEmpty() 方法:

// Java code to illustrate isEmpty()
import java.io.*;
import java.util.*;
  
public class SetDemo {
    public static void main(String args[])
    {
        // Creating an empty Set
        Set 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 Set
        System.out.println("Set: " + set);
  
        // Check for the empty set
        System.out.println("Is the set empty? " + set.isEmpty());
  
        // Clearing the set using clear() method
        set.clear();
  
        // Again Checking for the empty set
        System.out.println("Is the set empty? " + set.isEmpty());
    }
}
输出:
Set: [4, Geeks, Welcome, To]
Is the set empty? false
Is the set empty? true

参考:https: Java/util/Set.html#isEmpty()