当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.util.Dictionary.get()用法及代码示例



描述

这个java.util.Dictionary.get(Object key)方法返回字典中给出的键上的值。

声明

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

public abstract V get(Object key)

参数

key─ 这本词典中的一个键。如果键未映射到任何值,则可以为 null。

返回值

此方法返回该字典中键映射到的值。

异常

NA

示例

下面的例子展示了 java.util.Dictionary.get() 方法的用法。

package com.tutorialspoint;

import java.util.*;

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

      // create a new hashtable
      Dictionary dict = new Hashtable();

      // add elements in the hashtable
      dict.put("1", "Chocolate");
      dict.put("2", "Cocoa");
      dict.put("6", "Coffee");

      // returns the elements associated with the key
      System.out.println(dict.get("6"));
   }
}

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

Coffee

相关用法


注:本文由纯净天空筛选整理自 Java.util.Dictionary.get() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。