Java Dictionary put() 方法



描述

Java Dictionary put(K key,V value) 方法将指定的key映射到此字典中的指定value

声明

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

public abstract V put(K key,V value)

参数

  • key − 哈希表键。

  • value − 值。

返回值

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

异常

NullPointerException − 如果 value 或 key 为 null

向整数、整数对字典添加键值映射示例

以下示例演示了 Java Dictionary put(K,V) 方法的用法。我们使用 Integer、Integer 对的 Hashtable 对象创建一个字典实例。然后,我们使用 put(K,V) 方法向其中添加了一些元素。使用 elements() 方法检索枚举,然后迭代枚举以打印字典的元素。

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.Dictionary;
import java.util.Hashtable;

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

      // create a new hashtable
      Dictionary<Integer, Integer> dictionary = new Hashtable<>();

      // add 2 elements
      dictionary.put(1, 1);
      dictionary.put(2, 2);

      Enumeration<Integer> enumeration = dictionary.elements();

      while(enumeration.hasMoreElements()) {
         System.out.println(enumeration.nextElement());
      }
   }
}

输出

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

2
1

向整数、字符串对字典添加键值映射示例

以下示例演示了 Java Dictionary put(K,V) 方法的用法。我们使用 Integer、String 对的 Hashtable 对象创建一个字典实例。然后,我们使用 put(K,V) 方法向其中添加了一些元素。使用 elements() 方法检索枚举,然后迭代枚举以打印字典的元素。

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.Dictionary;
import java.util.Hashtable;

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

      // create a new hashtable
      Dictionary<Integer, String> dictionary = new Hashtable<>();

      // add 2 elements
      dictionary.put(1, "One");
      dictionary.put(2, "Two");

      Enumeration<String> enumeration = dictionary.elements();

      while(enumeration.hasMoreElements()) {
         System.out.println(enumeration.nextElement());
      }
   }
}

输出

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

Two
One

向整数、对象对字典添加键值映射示例

以下示例演示了 Java Dictionary put(K,V) 方法的用法。我们使用 Integer、Student 对的 Hashtable 对象创建一个字典实例。然后,我们使用 put(K,V) 方法向其中添加了一些元素。使用 elements() 方法检索枚举,然后迭代枚举以打印字典的元素。

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.Dictionary;
import java.util.Hashtable;

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

      // create a new hashtable
      Dictionary<Integer, Student> dictionary = new Hashtable<>();

      // add 2 elements
      dictionary.put(1, new Student(1, "Julie"));
      dictionary.put(2, new Student(2, "Robert"));

      Enumeration<Student> enumeration = dictionary.elements();

      while(enumeration.hasMoreElements()) {
         System.out.println(enumeration.nextElement());
      }
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

输出

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

[ 2, Robert ]
[ 1, Julie ]
java_util_dictionary.htm
广告