Java.util.Dictionary.isEmpty()


描述

该java.util.Dictionary.isEmpty()方法检查,如果这个字典里没有钥匙的价值。

声明

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

public abstract boolean isEmpty()

参数

NA

返回值

如果此字典没有值的键,则此方法返回true; 否则是假的。

异常

NA

实例

以下示例显示了java.util.Dictionary.isEmpty()方法的用法。

package com.tutorialspoint;

import java.util.*;

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

      // create a new hashtable
      Dictionary d = new Hashtable();

      // add elements in the hashtable
      d.put("1", "Chocolate");
      d.put("2", "Cocoa");
      d.put("5", "Coffee");

      // return true if this dictionary maps no keys to value.
      boolean b = d.isEmpty();
      System.out.println("Dictionary is empty:" + b);
   }
}

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

Dictionary is empty:false