扫码一下
查看教程更方便
isEmpty() 方法用于检查该 HashMap 是否为空。
isEmpty() 方法的语法为:
hashmap.isEmpty()
注 :hashmap 是 HashMap 类的一个对象。
无
如果 HashMap 中不包含任何键/值对的映射关系则返回 true,否则返回 false。
以下实例演示了 isEmpty() 方法的使用:
实例
import java.util.HashMap; public class Main { public static void main(String[] args) { HashMap<Integer, String> sites = new HashMap<>(); // 检查该 HashMap 是否含有元素 boolean result = sites.isEmpty(); // true System.out.println("是否为空? " + result); // 往 HashMap 添加一些元素 sites.put(1, "Google"); sites.put(2, "Jiyik"); sites.put(3, "Taobao"); System.out.println("HashMap: " + sites); result = sites.isEmpty(); // true System.out.println("是否为空? " + result); } }
执行以上程序输出结果为:
是否为空? true
HashMap: {1=Google, 2=Jiyik, 3=Taobao}
是否为空? false
在以上实例中,我们创建了一个名为 sites 的 HashMap,代码后面使用了 isEmpty() 方法判断是否为空。