在 Java 中检查一个 HashSet 是否为空
若要检查一个 HashSet 是否为空,请使用 isEmpty() 方法。
创建一个 HashSet −
HashSet hs = new HashSet();
向 HashSet 中添加元素 −
hs.add("B"); hs.add("A"); hs.add("D"); hs.add("E"); hs.add("C"); hs.add("F"); hs.add("K"); hs.add("M"); hs.add("N");
现在,检查 HashSet 是否为空。由于我们在上面添加了元素,因此它不会为空 −
hs.isEmpty();
以下是一个检查 HashSet 是否为空的示例 −
示例
import java.util.*; public class Demo { public static void main(String args[]) { // create a hash set HashSet hs = new HashSet(); // add elements to the hash set hs.add("B"); hs.add("A"); hs.add("D"); hs.add("E"); hs.add("C"); hs.add("F"); hs.add("K"); hs.add("M"); hs.add("N"); System.out.println("Elements: "+hs); System.out.println("Is the set empty? = "+hs.isEmpty()); } }
输出
Elements: [A, B, C, D, E, F, K, M, N] Is the set empty? = false
让我们看另一个示例 −
示例
import java.util.*; public class Demo { public static void main(String args[]) { HashSet hs = new HashSet(); // empty set System.out.println("Is the set empty? = "+hs.isEmpty()); } }
输出
Is the set empty? = true
广告