java.util.Hashtable.size()


描述

size()方法被用来获得在该散列表中的键的数量。

声明

以下是java.util.Hashtable.size()方法的声明。

public int size()

参数

NA

返回值

方法调用返回此哈希表中的键数。

异常

NA

实例

以下示例显示了java.util.Hashtable.size()的用法

package com.tutorialspoint;

import java.util.*;

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

      // create hash table
      Hashtable htable = new Hashtable(3);

      // populate the table
      htable.put(1, "TP");
      htable.put(2, "IS");
      htable.put(3, "THE");
      htable.put(4, "BEST");
      htable.put(5, "TUTORIAL");

      System.out.println("Size of the hash table is: "+htable.size());
   }    
}

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

Size of the hash table is: 5