Java Dictionary isEmpty() 方法



描述

Java Dictionary.isEmpty() 方法检查此字典是否没有键值对。

声明

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

public abstract boolean isEmpty()

参数

返回值

如果此字典没有键值对,则此方法返回 true;否则返回 false。

异常

检查整数、整数对字典是否为空的示例

以下示例演示了 Java Dictionary isEmpty() 方法的用法。我们使用 Integer、Integer 对的 Hashtable 对象创建一个字典实例。我们使用 isEmpty() 方法检查字典的状态并打印结果。然后我们向其中添加了一些元素,并使用 isEmpty() 方法检查字典的状态并打印结果。

package com.tutorialspoint;

import java.util.Dictionary;
import java.util.Hashtable;

public class DictionaryDemo {
   public static void main(String[] args) {

      // create a new hashtable
      Dictionary<Integer, Integer> dictionary = new Hashtable<>();
      System.out.println(dictionary.isEmpty());

      // add 2 elements
      dictionary.put(1, 1);
      dictionary.put(2, 2);

      System.out.println(dictionary.isEmpty());
   }
}

输出

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

true
false

检查整数、字符串对字典是否为空的示例

以下示例演示了 Java Dictionary isEmpty() 方法的用法。我们使用 Integer、String 对的 Hashtable 对象创建一个字典实例。我们使用 isEmpty() 方法检查字典的状态并打印结果。然后我们向其中添加了一些元素,并使用 isEmpty() 方法检查字典的状态并打印结果。

package com.tutorialspoint;

import java.util.Dictionary;
import java.util.Hashtable;

public class DictionaryDemo {
   public static void main(String[] args) {

      // create a new hashtable
      Dictionary<Integer, String> dictionary = new Hashtable<>();
      System.out.println(dictionary.isEmpty());

      // add 2 elements
      dictionary.put(1, "One");
      dictionary.put(2, "Two");
      System.out.println(dictionary.isEmpty());
   }
}

输出

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

true
false

检查整数、对象对字典是否为空的示例

以下示例演示了 Java Dictionary isEmpty() 方法的用法。我们使用 Integer、Student 对的 Hashtable 对象创建一个字典实例。我们使用 isEmpty() 方法检查字典的状态并打印结果。然后我们向其中添加了一些元素,并使用 isEmpty() 方法检查字典的状态并打印结果。

package com.tutorialspoint;

import java.util.Dictionary;
import java.util.Hashtable;

public class DictionaryDemo {
   public static void main(String[] args) {

      // create a new hashtable
      Dictionary<Integer, Student> dictionary = new Hashtable<>();
      System.out.println(dictionary.isEmpty());

      // add 2 elements
      dictionary.put(1, new Student(1, "Julie"));
      dictionary.put(2, new Student(2, "Robert"));

      System.out.println(dictionary.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 + " ]";
   }
}

输出

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

true
false
java_util_dictionary.htm
广告