java.util.Hashtable.isEmpty()方法实例
isEmpty() 方法被用来进行测试,如果这个哈希表没有映射到按键值。
声明
以下是java.util.Hashtable.isEmpty()方法的声明。
public boolean isEmpty()
参数
-
NA
返回值
该方法调用返回true,如果这个哈希表没有映射到键值;则为false。
异常
-
NA
例子
下面的例子显示java.util.Hashtable.isEmpty()方法的使用
package com.yiibai; import java.util.*; public class HashTableDemo { public static void main(String args[]) { // create hash table Hashtable htable1 = new Hashtable(); // put values in table htable1.put(1, "A"); htable1.put(2, "B"); htable1.put(3, "C"); htable1.put(4, "D"); // check if table is empty System.out.println("Is hash table empty :"+htable1.isEmpty()); } }
现在编译和运行上面的代码示例,将产生以下结果。
Is hash table empty :false