📜  用示例映射Java中的 isEmpty() 方法

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

用示例映射Java中的 isEmpty() 方法

此方法用于检查映射是否具有键值对的任何条目。如果不存在映射,则返回 true。

句法:

boolean isEmpty()

参数:此方法没有参数。

返回:如果映射不包含任何键值映射,则此方法返回 True。

下面的程序显示了 int isEmpty() 方法的实现。

方案一:

// Java code to show the implementation of
// isEmpty method in Map interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a Map of type HashMap
        Map map = new HashMap<>();
  
        System.out.println(map);
  
        System.out.println(map.isEmpty());
    }
}
输出:
{}
true

程序 2:下面是显示 hashCode() 实现的代码。

// Java code to show the implementation of
// isEmpty method in Map interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a Map of type HashMap
        Map map = new HashMap<>();
        map.put("1", "One");
        map.put("3", "Three");
        map.put("5", "Five");
        map.put("7", "Seven");
        map.put("9", "Ninde");
        System.out.println(map);
  
        System.out.println(map.isEmpty());
    }
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
false

参考:
甲骨文文档