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