java.util.Dictionary.isEmpty() 方法檢查,如果這個字典裡沒有鍵的值。
以下是java.util.Dictionary.isEmpty()方法的宣告
public abstract boolean isEmpty()
NA
如果這個字典裡沒有鍵的值,該方法返回true;否則為false。
NA
下面的範例演示java.util.Dictionary.isEmpty()方法的用法。
package com.yiibai; 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