Java IdentityHashMap isEmpty() 方法



描述

isEmpty() 方法用于测试此标识哈希映射是否不包含键值映射。

声明

以下是 java.util.IdentityHashMap.isEmpty() 方法的声明。

public boolean isEmpty()

参数

返回值

如果此标识哈希映射不包含键值映射,则方法调用返回“true”。

异常

检查 Integer,Integer 对 IdentityHashMap 的空性示例

以下示例演示了 Java IdentityHashMap isEmpty() 方法的使用,以检查 Map 是否为空。我们创建了一个 Integer,Integer 对的 Map 对象。然后添加了一些条目,打印了 Map。然后使用 isEmpty() 方法检查 Map。使用 clear() 方法清除 Map 并再次打印,并使用 isEmpty() 方法再次检查。

package com.tutorialspoint;

import java.util.IdentityHashMap;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      
      // create identity map
      IdentityHashMap<Integer,Integer> newmap = new IdentityHashMap<>();

      // populate identity map
      newmap.put(1, 1);
      newmap.put(2, 2);
      newmap.put(3, 3); 

      System.out.println("Initial map elements: " + newmap);
      System.out.println("Is map Empty: " + newmap.isEmpty());

      // clear hash map
      newmap.clear();

      System.out.println("Map elements after clear: " + newmap);
      System.out.println("Is map Empty: " + newmap.isEmpty());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Initial map elements: {2=2, 3=3, 1=1}
Is map Empty: false
Map elements after clear: {}
Is map Empty: true

检查 Integer,String 对 IdentityHashMap 的空性示例

以下示例演示了 Java IdentityHashMap isEmpty() 方法的使用,以检查 Map 是否为空。我们创建了一个 Integer,String 对的 Map 对象。然后添加了一些条目,打印了 Map。然后使用 isEmpty() 方法检查 Map。使用 clear() 方法清除 Map 并再次打印,并使用 isEmpty() 方法再次检查。

package com.tutorialspoint;

import java.util.IdentityHashMap;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      
      // create identity map
      IdentityHashMap<Integer,String> newmap = new IdentityHashMap<>();

      // populate identity map
      newmap.put(1, "tutorials");
      newmap.put(2, "point");
      newmap.put(3, "is best"); 

      System.out.println("Initial map elements: " + newmap);
      System.out.println("Is map Empty: " + newmap.isEmpty());
      // clear hash map
      newmap.clear();

      System.out.println("Map elements after clear: " + newmap);
      System.out.println("Is map Empty: " + newmap.isEmpty());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Initial map elements: {2=point, 3=is best, 1=tutorials}
Is map Empty: false
Map elements after clear: {}
Is map Empty: true

检查 Integer,Object 对 IdentityHashMap 的空性示例

以下示例演示了 Java IdentityHashMap isEmpty() 方法的使用,以检查 Map 是否为空。我们创建了一个 Integer,Student 对的 Map 对象。然后添加了一些条目,打印了 Map。然后使用 isEmpty() 方法检查 Map。使用 clear() 方法清除 Map 并再次打印,并使用 isEmpty() 方法再次检查。

package com.tutorialspoint;

import java.util.IdentityHashMap;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      
      // create identity map
      IdentityHashMap<Integer,Student> newmap = new IdentityHashMap<>();

      // populate identity map
      newmap.put(1, new Student(1, "Julie"));
      newmap.put(2, new Student(2, "Robert"));
      newmap.put(3, new Student(3, "Adam"));

      System.out.println("Initial map elements: " + newmap);
      System.out.println("Is map Empty: " + newmap.isEmpty());

      // clear hash map
      newmap.clear();

      System.out.println("Map elements after clear: " + newmap);
      System.out.println("Is map Empty: " + newmap.isEmpty());
   }    
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Initial map elements: {1=[ 1, Julie ], 3=[ 3, Adam ], 2=[ 2, Robert ]}
Is map Empty: false
Map elements after clear: {}
Is map Empty: true
java_util_identityhashmap.htm
广告