Java.util.Dictionary.put()


描述

所述java.util.Dictionary.put(K key,V value)方法映射到指定键到指定的值在此字典。

声明

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

public abstract V put(K key,V value)

参数

key − the hashtable key.

value − the value.

返回值

此方法返回键在此字典中映射到的值,如果键没有映射,则返回null。

异常

NullPointerException - 如果值或键为null

实例

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

package com.tutorialspoint;

import java.util.*;

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

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

      // put some elements
      d.put("1", "Chocolate");
      d.put("2", "Cocoa");
      d.put("5", "Coffee");

      // print how many times put was called
      System.out.println("Number of times put was called:" + d.size());
   }
}

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

Number of times put was called:3